PHP ver gevorderde |
|
wil je iets include en de vars van dat geïnclude bestand afprinten of begrijp ik je verkeerd?
pagina1.php
<?php
$inhoud="Hello world, this is me, let's have fun -- Belle Perez :p";
?>
<?php $inhoud="Hello world, this is me, let's have fun -- Belle Perez :p"; ?>
pagina2.php
<?php
include("pagina1.php");
?>
<table>
<tr><td><?php echo $inhoud ?></td></tr>
</table>
<?php include("pagina1.php"); ?> <table> <tr><td> <?php echo $inhoud ?></td></tr> </table>
|