Recent content by realslimeball

  1. R

    Need QUICK, EASY, PHP help! points to the best answer!?

    Would the following PHP code work in sending the name and email address someone has put into an HTML <form> field to an email address I specify? <?php $name = $_POST['name'] $email = $_POST['email'] //To, Subject, Message, Header mail('[email protected]', 'newsletter signup', ' . $name . '...
  2. R

    How do I nest php in an html <form> tag on facebook?

    This is what I originally wanted to happen: <form action="step2.php" method="post"> name<br/><input type="text" name="name"/> email<br/><input type="text" name="email"/> <input type="submit" value="send" /> </form> step2.php: <?php $name = $_POST['name'] $email = $_POST['email']...
Back
Top