my first attempts in php and here i go:
the url looks like:
http;//and the php code looks like this:
when i insert the url into the address bar and press "enter" the ages won't load for a very long time and then a blank screen is displayd (no text at all).
the php is installed and non-conditional statements like
work fine.
what could be the problem?
--------------------------------------------------
Goals are dreams with deadlines
-------------------------------------
the url looks like:
http;//and the php code looks like this:
Code:
<?php
if ($_REQUEST['firstname'] == "Valeria") {
echo("match")
}
else {
echo("no match")
}
?>
the php is installed and non-conditional statements like
Code:
<?php
echo("Welcome to my web site, " . $_GET['firstname'] . " " . $_GET['lastname'] . "!")
?>
what could be the problem?
--------------------------------------------------
Goals are dreams with deadlines
-------------------------------------