Code:
---blabla.php----
<html>
<body>
bla..bla...<?php include ("truc.php"); ?> bla... bla...
</body>
</html>
---blabla.html----
---truc.php----
echo 'truc...truc...'
---truc.php----
mada je bolje ovako:
Code:
---blabla.php----
<?php include ("trucanje.php"); ?>
<html>
<body>
bla..bla...<?php truc(); ?> bla... bla...
</body>
</html>
---blabla.html----
---trucanje.php----
function truc {
echo 'truc...truc...'
}
---truc.php----