Hi, the problem relates to the register_globals directive.
The solution is you must access the variable in the $_POST superglobal array, and not as a global variable...
So $_POST['Authur'] instead of $Authur if the method attribute of your html form is set to post.
Or $_GET['Authur'] instead of $Authur if the method attribute of your html form is set to get.
Here is the most important URL you will ever need when dealing with PHP:
http://www.php.net/manual/en/index.php
Here is the specific page on super-global variables:
http://www.php.net/manual/en/languag...predefined.php
A page discussing why register_globals is a potential security risk:
http://www.php.net/manual/en/securit...terglobals.php
More topics on p2p that discuss this:
http://www.google.com/search?q=regis...e:p2p.wrox.com
: )
Rich
:::::::::::::::::::::::::::::::::
Smiling Souls
http://www.smilingsouls.net
:::::::::::::::::::::::::::::::::