python 0 Posted September 16, 2010 Hello every body I have a php site with mysql database when any body wont to send any question to my he can use an application page So .. my question is how I can make 2 text in my project and 1 button in first text enter some email and is second text enter any message and when I click on button text(1) and text(2) send to my mysql database I just need an example Share this post Link to post Share on other sites
nfaustin 1 Posted September 16, 2010 Is this so called application page is viewed in browser(HTML code)? or application page run by AUTOIT GUI? [font="Palatino Linotype"][size="2"]*** The information contained in this post should be considered and certified WORKS ON MY MACHINE ***[/size][/font][font="Palatino Linotype"][size="2"] [/size][/font] Share this post Link to post Share on other sites
python 0 Posted September 17, 2010 When i press on the button in my Autoit project that send the information to my mysql Share this post Link to post Share on other sites
python 0 Posted September 17, 2010 (edited) any comment !! Edited September 17, 2010 by python Share this post Link to post Share on other sites
seandisanti 6 Posted September 19, 2010 Hello every body I have a php site with mysql database when any body wont to send any question to my he can use an application page So .. my question is how I can make 2 text in my project and 1 button in first text enter some email and is second text enter any message and when I click on button text(1) and text(2) send to my mysql database I just need an example you could have it so the button does something like... $oIE=_IECreate("yourdomain.com/yourpage.php?email=myemail%40hotmail.com&?message=if+you+already+have+a+page+that+does+the+work%2C+just+submit+the+values+to+the+page+and+let+it+do+the+work");requires #include<ie.au3> _IEQuit($oIE) you'd of course have to replace the domain, page, and parameter names with the correct ones, but it would work. you could also play with the _IECreate() parameters and not even have it visible Share this post Link to post Share on other sites
nfaustin 1 Posted September 19, 2010 I still don't get your question. You may use cameronsdad if you had site with html page to send comment but if you want your autoit project have a GUI with button to send comments/data directly to your mysql database server, then you may use mysql connector and mysql UDF, just search here on mysql UDF for samples. That's my answer based on my understanding on your question here. Correct me if I'm wrong.. [font="Palatino Linotype"][size="2"]*** The information contained in this post should be considered and certified WORKS ON MY MACHINE ***[/size][/font][font="Palatino Linotype"][size="2"] [/size][/font] Share this post Link to post Share on other sites