How do html read variables in href like:
<a href="test.php3?val=myvariable">
I wanto to pass myvariable, but not with a fixed value, but with the value of a variable.
Let me explain better.
I have a page that have mixed code in php and html. I don't want convert all the html to php, because it's two much stuff.
look:
<?php
$myvariable="test";
?
<a href="test.php3?val=$myvariable">click the link</a>
I know it's not like that, but that's what I am trying to do.
Thanks