I have not successfully tested the Tutorial from PHPBuilder that creates a discussion thread with PHP and MS Access.
I created the forum.php and node.php files and there seems to be a problem with how the "node" variable is passed from forum.php to node.php. It is passed with the URL:
<a href="node.php?node=0">Post New Message</a>
The file node.php errors on line 15:
"Notice: Undefined variable: node in :\Inetpub\wwwroot\node.php on line 15"
Line 15 in node.php is: if ( $node != 0 )
Does the variable node have to be defined in node.php if it passed to it as part of the URL?
This is my first experience with PHP and any suggestions are welcome (my experience is predominantly ColdFusion and ASP).
Thanks.