I have two files
- File1 menu.php:
<?php
require("?>
and some html and php...
- File2 menulink.php
<?php
echo("BlaBla"
$menulink1 = "index.php?pagina=1";
$menulink2 = "index.php?pagina=2";
$menulink3 = "index.php?pagina=3";
$menulink4 = "index.php?pagina=4";
$menulink5 = "index.php?pagina=5";
$menulink6 = "index.php?pagina=6";
?>
The file menu.php let me see BlaBla and then some other things. What i have made. But i can not use the variable from menulink.php in my menu.php script. When i put the variable direct in the file menu.php. It does work correctly. But I won't do that.
What is my problem, is there anything I'am doing wrong???
Qwark
- File1 menu.php:
<?php
require("?>
and some html and php...
- File2 menulink.php
<?php
echo("BlaBla"
$menulink1 = "index.php?pagina=1";
$menulink2 = "index.php?pagina=2";
$menulink3 = "index.php?pagina=3";
$menulink4 = "index.php?pagina=4";
$menulink5 = "index.php?pagina=5";
$menulink6 = "index.php?pagina=6";
?>
The file menu.php let me see BlaBla and then some other things. What i have made. But i can not use the variable from menulink.php in my menu.php script. When i put the variable direct in the file menu.php. It does work correctly. But I won't do that.
What is my problem, is there anything I'am doing wrong???
Qwark