Heath Posted January 17, 2007 Share Posted January 17, 2007 Hi, im trying to develop a social network submission code through a form... this is what I have so far but its not working correctly....Form HTML.[code]<form action="submission.php" method="post">Title: <input type="text" name="title"><br>URL: <input type="text" name = "name"><br><br><input type="submit" value="Submit"></form>[/code]And the php is...[code]<?function checkOK($field){if (eregi("\r",$field) || eregi("\n",$field)){die("Invalid Input!");}}$title=$_POST['title'];checkOK($title);$url=$_POST['url'];checkOK($url);$to='<a href="http://myjeeves.ask.com/mysearch/BookmarkIt?v=1.2&t=webpages&title=<$title>&url=<$url>">Bookmark to AskJeeves!</a>';echo "Thanks for your comments.";} else {echo "There was a problem sending the mail. Please check that you filled in the form correctly.";}?>[/code]My goal is to have a bunch of box's to check to enable you to submit it to several different websites, it will submit the information typed in the form, and open up several browsers, submitting the form.... any type of check box, or drop down that allows multiple choices would work.... Any help with this please? Link to comment https://forums.phpfreaks.com/topic/34606-form-link-submission-help/ Share on other sites More sharing options...
Heath Posted January 18, 2007 Author Share Posted January 18, 2007 can i get some help with this please? Link to comment https://forums.phpfreaks.com/topic/34606-form-link-submission-help/#findComment-163291 Share on other sites More sharing options...
Heath Posted January 19, 2007 Author Share Posted January 19, 2007 I am sorry to keep bumping this but I still have not resolved this could I please receive any tips any one may be able to provide. Link to comment https://forums.phpfreaks.com/topic/34606-form-link-submission-help/#findComment-164283 Share on other sites More sharing options...
whitelion Posted January 19, 2007 Share Posted January 19, 2007 $url should $url=$_POST['name'];Because your field URL we put name ="name". Link to comment https://forums.phpfreaks.com/topic/34606-form-link-submission-help/#findComment-164287 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.