Hi
I just got stuck in my assignment. I am trying to use arrays and would appreciate if anybody could help. I would also like to use tables.
This is what i have done:
<title>Web Safe Colors</title>
<head>hello 216 colors</head>
<body>
<?
$redcolor= array (00,33,66,99,cc,ff);
$bluecolor=array ( 00,33,66,99,cc,ff);
$greencolor=array ( 00,33,66,99,cc,ff );
for( $redcolor=0; $redcolor <=6; $redcolor++ )
echo $redcolor[$redcolor];
echo $bluecolor[$bluecolor];
echo $greencolor[$greencolor];
?>
</body>
Could anybody please tell me where i went wrong?
Thanks
Neil
PS:I am still learning