[php]
Untitled Document body { bgColor: <?= $_GET['color'] ?>; } Hello, <?= $_GET['username'] ?>! [/php] [code] Untitled Document body { background-color: <?= $_POST['color'] ?>; }Your Output
<?php
//retrieve all the variables
?>
[/code]
$basicText = filter_input(INPUT_POST, “basicText”);
$borderSize = filter_input(INPUT_POST, “borderSize”);
$sizeType = filter_input(INPUT_POST, “sizeType”);
$borderStyle = filter_input(INPUT_POST, “borderStyle”);
$theStyle = <<<HERE
“border-width:$borderSize$sizeType;
border-style:$borderStyle;
border-color:green”
HERE;
print “
”;
print $basicText;
print “
”;print $basicText;
print “
?>