tav wrote:
i have the 2 pages below and am unable to parse data for some reason, when I submit the data I am presented with a page just saying \"Hello !\"
it should have parsed the name input on the first page.
Any ideas what I am doing wrong or what would be the correct way to parse data.
Could there be something wrong with my php configuration?
the pages that I have are as below
\"\"\"\"\"\"\"\" TRY IT \"\"\"\"\"\"\"\"\"\"
===============
hello-web.html
<table border=0>
<form action=\"hello-web.php\" method=\"post\">
<tr><td>Name: <td><input type=\"text\" name=\"yourname\" size=\"24\"></td></tr>
<tr><td><input type=\"submit\" value=\"submit\">
</td></tr>
</form>
</table>
===============
hello-web.php
<p>Hello</p>
<?
echo \"$yourname\";
?>
GOOD LUCK!!!