im trying to make links like this
www.example.com/index.php?page=Example_page
im trying code like the below in the PHP File
and this is the html
from clicking
www.example.com/index.php?page=Example_page
want to be able to go to
www.example.com/example2.htm
this doesnt work what am i doing wrong
hope this makes sense
any help would be nice
thanks
www.example.com/index.php?page=Example_page
im trying code like the below in the PHP File
Code:
<?php
$Example_Page = "http://www.example.com/example2.htm";}
?>
and this is the html
Code:
<html>
<a href="http://www.example.com/?page=Example_Page">click</a>
</html>
www.example.com/index.php?page=Example_page
want to be able to go to
www.example.com/example2.htm
this doesnt work what am i doing wrong
hope this makes sense
any help would be nice
thanks