Search results

  1. P

    Looking for some PHP scripting help?

    Make a form, and in the form tag put action="nameofphppage.php" Also add method="post" or method="get". get puts the info in the browsers address bar, so it's good for things like searches. post hides the data, so it's good for lots of other things, like log in boxes. Then to read the...
  2. P

    Looking for some PHP scripting help?

    Make a form, and in the form tag put action="nameofphppage.php" Also add method="post" or method="get". get puts the info in the browsers address bar, so it's good for things like searches. post hides the data, so it's good for lots of other things, like log in boxes. Then to read the...
  3. P

    PHP Help, trying to get a whole php code in one if statment but isnt working properly?

    You have value="php1 But you haven't closed the quotes. <input type="radio" name="radio1" value="php1"/>
Back
Top