i need some help with onclick navigating.
i'm trying to manipulate this code
Code:
<?
include("index1.php");
?>
but i want to be able to change "index1.php" to a variable
Quote:
var = 'index1.php'
<?
include("var");
?>
|
and change the variable with an onClick action
how would i do this?
it seems so simple but i cant figure it out