Hi,
My administrator have set up php and mysql on the server.
Now I put my php files in right folder and they are executed.
Everything works BUT not the if statement!
<?php
print("Greetings <br>");
if ($name!='')
{
print("$name");
}
?>
The execute the file with:
www.myserver.com/index.php?name=Martin
The "Greetings" line is shown but not the name.
I have tried with severral types of it statements but the if statement don't execute - no of them!
Have you seen that problem after setting up the php?
What did he do wrong?