Hi, I have an Apache+PHP server in a WindowsNT server.
ScriptAlias /php/ "c:/php/"
AddType application/x-httpd-php .php .phtml
Action application/x-httpd-php "/php/php.exe"
I cannot read a URL variable in a php script.
Example:
kevin.html
<a href='welcome.php?name=Kevin'>Hi</a>
welcome.php
<? echo ("Welcome, $name")?>
only displays:
Welcome,
How am I solve this problem?
Thanks in advance and excuse my english :-)
Juan