Onbekend |
|
ja maar dan moet ik nog echo ..... doen...
wat ik dus wil is puur:
iemand zet er neer
{menu}
en thats it, en daar staat mijn menu.
soort van superglobal?
dus wat ik niet wil is:
<head>
</head>
<body>
<?php
define("{test}", "hallo");
echo {test};
?>
</body>
</html>
<head> </head> <body> <?php ?> </body> </html>
maar
<head>
</head>
<body>
<?php
define("{test}", "hallo");
?>
{test}
</body>
</html>
<head> </head> <body> <?php ?> {test} </body> </html>
|