PHP expert |
|
<html>
<head>
<title></title>
</head>
<body>
include ("pagina.php");
</body>
</html>
<html> <head> <title></title> </head> <body> include ("pagina.php"); </body> </html>
Moet onderstaande worden:
<html>
<head>
<title></title>
</head>
<body>
<?php
include ("pagina.php");
?>
</body>
</html>
<html> <head> <title></title> </head> <body> <?php include ("pagina.php"); ?> </body> </html>
Ik zou je willen aanraden om nog eens een PHP tutorial door te lezen. Dit is basiswerk. <?php en ?> zijn begin en eind-tag van PHP. |