I have purchased a book which gives me a script for 2 files.
welcome.html and welcome.php
The contents of welcome.html is:
<a href="welcome.php?name=kevin"> Hi, I'm Kevin! </a>
and the file welcome.php is:
<?php
echo( "welcome to my website, $name!" );
?>
When i go to view welcome.html and click the link the page gives me the error
Notice: Undefined variable: name in C:\Inetpub\wwwroot\webboard\welcome.php on line 7
Welcome to our Web site, !
I know php is working as i have run another demo in the book, and i also have phpbb running under the same directory.
Im running Windows 2000 with IIS, fully loaded php.
Any help would be appreciated as to what the possible problem could be
Thank you for any help offered.


