I just created an form asking users to input three colors in 3 different boxes named as R ,G,B respectively.
the corresponding SCRIPT is:
An interactive color sampler
<?php $r=$_GET['r']; $g=$_GET['g']; $b=$_GET['b']; $rgb=$r.','.$g.'.'.$b; ?> R:<?php echo $r; ?> G:<?php echo $g; ?> B:<?php echo $b; ?>
ERROR :::
Notice: Undefined index: r in C:\xampp\htdocs\display.php on line 8
Notice: Undefined index: g in C:\xampp\htdocs\display.php on line 9
Notice: Undefined index: b in C:\xampp\htdocs\display.php on line 10
R:G:B:
