Hello,
I'm new here in this PhP.
and I was testing this:
I've created a HTML file that calls an PhP procedure
the PhP script is:
<?php
$name=$_GET['name']
echo "hello, $name!"
?>
and the HTML script is:
<html>
<head>
<title>Untitled Document</title>
</head>
<body>
<a href="hello.php?name=Ralph">test</a>
</body>
</html>
when I klick on the link that calls the PhP script, then I see the PhP script in my internet browser instead of the result:
Hello Ralph.
how can i fix this?
regards,
Ralph