helo people..
well the past week I've been foolin around wiht apache, mysql and php and I ran into a little prob.
well here it is:
I installed php,mysql and apache using a tutorial and everything works fine. it loads php files and everything.
my problem is that it won't process the following:
welcome.htm
Code:
<html>
<head>
<title></title>
</head>
<body>
<A HREF="welcome.php?name=Kevin"> Hi, I'm Kevin! </A>
</body>
</html>
welcome.php
Code:
<html>
<head>
<title></title>
</head>
<body>
<?php
echo( "Welcome to our Web site, $name!" );
?>
</body>
</html>
when I click on the link to load the phpfile it loads only "Welcome to our Web site, !"
and doesn't load "kevin".
If any1 can help me out to figure out what the problem could be pls help
tnx
peace