Advanced Custom Page Colors

Advanced Custom Page Colors

Allows user to set the background color and text color, you can set a message if they choose certain colors.

<body bgcolor=<?=$_GET[”bg”]?> text=<?=$_GET[”txt”]?>>
<center>
<form method=”GET”>
<input type=”text” value=”Background Color” name=”bg”>
<input type=”text” value=”Text Color” name=”txt”>
<input type=”hidden” value=1 name=done>
<input type=”submit” value=”Change”>
<input type=”reset” value=reset>
</form>
<?
if (isset($_GET[”done”])) {
if ($_GET[”bg”]==”YOUR SPECIFIC BACKGROUND COLOR”) {
if ($_GET[”txt”]==”YOUR SPECIFIC TEXT COLOR”) {
echo “YOUR TEXT IF COLORS ARE USED”; }
else {
echo “You are using $_GET[bg] for your background color and $_GET[txt] for your text color”; }
}
else {
echo “You are using $_GET[bg] for your background color and $_GET[txt] for your text color”; }
}
else {
echo “<font color=white>Choose something</font>”;
}
?>

Leave a Reply


All material @ copyrighted by chrisranjana.com. If you want to link to this article you are welcome to do so. Unauthorized publication is strictly prohibited. This developer tutorial website contains articles by Php programmers , Software developers, Mysql programmers and asp c# programmers. This website also contains ajax tutorials and advanced mysql sql stored procedures and functions tutorials and sample codes.