ident Posted September 16, 2009 Share Posted September 16, 2009 any one suggest one? all i need is for it to get the values of a few checkboxes and textarea then email me it. Quote Link to comment https://forums.phpfreaks.com/topic/174446-php-form-handling-script/ Share on other sites More sharing options...
jlhaslip Posted September 16, 2009 Share Posted September 16, 2009 http://php.net should have something for that. Quote Link to comment https://forums.phpfreaks.com/topic/174446-php-form-handling-script/#findComment-919465 Share on other sites More sharing options...
Adam Posted September 16, 2009 Share Posted September 16, 2009 I can't imagine finding a script out there tailored to those needs, better searching for tutorials and articles. I'd read up on how to retrieve inputs first and then how to send basic emails. Once you're fairly confident with each shouldn't be tricky combining the knowledge. Quote Link to comment https://forums.phpfreaks.com/topic/174446-php-form-handling-script/#findComment-919491 Share on other sites More sharing options...
ident Posted September 16, 2009 Author Share Posted September 16, 2009 Hi, yes i decided to do that. but i can only get the value of one check box(can do textfields fine. can any one see why only the top one works <?php if (isset($_POST['chkUpgrading'])) { echo 'upgrading or re-installing=True'; } if (isset($_POST['chknotWorking'])) { echo 'NotWorking=True'; } ?> HTML <td width="4%" valign="middle" align="right"> <input id="objDidNotWork0" type="checkbox" name="chkUpgrading" value="REINSTALLING"></td> <td valign="middle"> I am upgrading or re-installing. </td> </tr> <tr> <td width="4%" valign="middle" align="right"> <input id="objDidNotWork" type="checkbox" name="chknotWorking" value="DIDNOTWORK"></td> i have the name right :'( Quote Link to comment https://forums.phpfreaks.com/topic/174446-php-form-handling-script/#findComment-919505 Share on other sites More sharing options...
ident Posted September 16, 2009 Author Share Posted September 16, 2009 bump Quote Link to comment https://forums.phpfreaks.com/topic/174446-php-form-handling-script/#findComment-919803 Share on other sites More sharing options...
prasanthmj Posted September 17, 2009 Share Posted September 17, 2009 From the code given, there is no reason for it to fail to work. Perhaps, if you show complete code, that will help in finding the problem. The following tutorials might help: Handling checkbox in a PHP form email form how to's Quote Link to comment https://forums.phpfreaks.com/topic/174446-php-form-handling-script/#findComment-919874 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.