Jump to content

PHP form $_POST question


milesap

Recommended Posts

The ID of the form does not matter unless it's the one being submitted. You have to have "action=page.php", your parser or the own page and if you have a textarea for example..

<form action="form.php">

  <textarea id="this"> </textarea> And then:

</form>

if (isset($_POST['this'])) {

      echo "$_POST['this']";

}

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.