Jump to content
php.lv forumi

Viegli uzsaakt?


http://localhosts

Recommended Posts

Vienkārši http://lv.php.net/include

Ir fails teksts.php kurā teiksim ir "Sheit kaut kads teksts"

 

Ir lapa1.php kurā ir kods:

<?

include('teksts.php');

?>

 

ir lapa2.php kurā arī ir kods

<?

include('teksts.php');

?>

 

 

Attiecīgi palabojot failu teksts.php mums nomainās gan lapa1.php gan lapa2.php ...

Es ceru ideju saprati?

 

 

Attiecīgi standarta piegājies ir definēt headeri un footeri, lai pamainot vienā vietā mainītos citur un proti:

head.php satur piemēram:

<html>

<head>

<title>mana lapa</title>

</head>

<body>

 

 

bet foot.php:

</body>

</html>

 

 

Attiecīgi mums atliek tikai cept dažādas lapas kurās mēs rakstam:

<?

include('head.php');

// izpildam kaut kādu php kodu

echo 'blabla';

?>

Varam likt arii htmlu <a href="#">Links</a>

<?

include('foot.php');

?>

Link to comment
Share on other sites

×
×
  • Create New...