• Howdy! Welcome to our community of more than 130.000 members devoted to web hosting. This is a great place to get special offers from web hosts and post your own requests or ads. To start posting sign up here. Cheers! /Peo, FreeWebSpace.net
managed wordpress hosting

[php]$_post

<form action="index.php" method="post">
<input type="text" name="subject" value="">
<input type="submit" name="submit" value="Submit">
</form>

on the next action, you'd need to recall the subject:

$_POST['subject'];
 
$_POST['string'] is a superglobal array. Remember when you write $data = $_POST['string'] , $data is not a variable.
//Remember, php is case sensitive so $_post won't work.
 
Back
Top