PHP Archiv

Das PHP Script Verzeichnis

Tag Archives: dynamisch

// Start output buffering, this will // catch all content so that we can // do some calculations ob_start(); // Some example HTML print ‚<html>‘; // put your content in here: print ‚<h1>Example content</h1>‘; print ‚<ul>‘; for ($x=0; $x < 10; $x++) print „<li>List item $x</li>“; print ‚</ul>‘; print ‚</html>‘; // or include() something here […]