Ok, super-newbie here,
Having problems with retrieveing posted values,
I have two pages as follows
<html>
<body>
<a href="node.php?node=0">Test</a>
</body>
</html>
and
<html>
<body>
<?php
echo $_POST['node'];
?>
</body>
</html>
One would assume that when clicking on the link, the resulting page would consist of a single '0' but instead I recieve
Notice: Undefined index: node in X:\WWW Root\Test Place\node.php on line 2
Any ideas??
I am running IIS6 on Win2003 with PHP v4.3.7
Thanks