CSS Box generieren



Die Funktion create_box() erstellt eine CSS Box.


<?php

// CSS-Boxen mit PHP (2)
function create_box($farbe, $hg, $breite, $hoehe, $inhalt) {
return '<div style="width:' . $breite . 'px;
height:' . $hoehe . 'px;
color:#' . $farbe . ';
background:#' . $hg . ';
overflow:auto;">' . $inhalt . '</div>';
}
echo create_box("000000", "FF2277", 200, 100, "Inhalt");

?>




created by NETTECS.ch