i have configured webuilder to preview php, it works fine but:
if i got this simple code(a url query):
this is the first file(this one doesnt need php extension has there is no php in it)(excerpt):
Code: Select all
<body>
<p><a href="welcome1.php?name=Kevin">Hi, I'm Kevin!</a></p>
</body>
it calls this file wich needs the php extension(has there is php code in it)(excerpt):
Code: Select all
<body>
<p><?php $name = $_GET['name'];
echo "Welcome to our Web site, $name!";?></p>
</body>