Knut: Script in PHP, Anfangswertfestlegen

Beitrag lesen

Ich habe das Script von Ottogal in PHP umgeschrieben. Es läuft ;-)

Es fängt ja mit schwarz an, ist es möglich einen Anderen Anfangswert einzustellen?

<?php

$s= array("0","1","2","3","4","5","6","7","8","9","a","b","c","d","e","f");

for($i=0;$i<1;$i++) 
	{
	echo '<table width=100%>'."\n";

	for($j=0;$j<16;$j++) 
		{
		echo'<tr height=144px width=100%>'."\n";
		
		for($k=0;$k<16;$k++) 
			{
			$c=$s[$i].$s[$j].$s[$k];
			$cc=$s[$i].$s[$i].$s[$j].$s[$j].$s[$k].$s[$k];
			echo'<td width=60px bgcolor="'.$cc.'">&nbsp;&nbsp;'.$c.'<br/><span style="color: #000000">&nbsp;&nbsp;'.$c.'</span></td>'."\n";
			}

		echo'<td>&nbsp;</td>'."\n";
		echo'</tr>'."\n";
		}

	echo '</table>'."\n";
	}

?>