Guest iv05 Posted July 2, 2006 Share Posted July 2, 2006 Hi I have a html form on a server that does not run PHP. To get around this I want to send the form processing to a seperate colleagues server that has PHP installed i.e. <form action="http://www.anotherserver.com/sendmail.php" method="post"> Does anybody have any scripts I can use to get the details from the form below to send to my email address? ---------------- HTML FORM ------ <form action="http://www.thfctalk.com/photography/sendmail.php" method="post"> <table cellspacing="0" cellpadding="4"> <tr> <td>Name:</td> <td> </td> <td><input name="name" type="text" id="name"></td> </tr> <tr> <td>E-Mail Address:</td> <td> </td> <td><input name="email" type="text" id="emailfrom" size="30"></td> </tr> <tr> <td>Address:</td> <td> </td> <td><textarea name="address" cols="25" rows="5" id="address"></textarea></td> </tr> <tr> <td>Home Telephone: </td> <td> </td> <td><input name="hometel" type="text" id="hometel"></td> </tr> <tr> <td>Work Telephone: </td> <td> </td> <td><input name="worktel" type="text" id="worktel"></td> </tr> <tr> <td>Mobile:</td> <td> </td> <td><input name="mobile" type="text" id="mobile"></td> </tr> <tr> <td>Wedding Venue: </td> <td> </td> <td><input name="wedvenue" type="text" id="wedvenue"></td> </tr> <tr> <td>Reception Venue: </td> <td> </td> <td><input name="recvenue" type="text" id="recvenue"></td> </tr> </table> <p>Please use the box below for any queries:</p> <p> <textarea name="message" cols="50" rows="7" id="message"></textarea> </p> <p> <input type="submit" value="Send"> </p> </form> Link to comment https://forums.phpfreaks.com/topic/13501-html-feedback-form-using-php-for-processing-data/ Share on other sites More sharing options...
trq Posted July 2, 2006 Share Posted July 2, 2006 We dont write scripts for people. Try searching the board for [i]simple form to email[/i] or something simular. Should be heaps of examples around. Link to comment https://forums.phpfreaks.com/topic/13501-html-feedback-form-using-php-for-processing-data/#findComment-52244 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.