Hi there. I am new to php but I was doing with c.
mY script was around 300 lines. I went line by line to find the mistake and I cut it to this simple script. I found the mistake but I still dont get it.
Q: Why when I repeat the cycle more then 30 times IE show Page cannot be displayed. and it is simple script????
<table bgcolor="#111133" width="100%">
<tr>
<?
echo "<td height=\"46\">
<center>
<table border=\"1\" cellspacing=\"1\" width=\"100%\">";
$num=1000;
for ($e=0;$e<$num;$e++){
echo "<tr>";
echo "<td width=\"100\">";
echo "Ahoj";
echo "</td>";
echo "<td width=\"100\">";
echo "Aj";
echo "</td>";
echo "</tr>";
}
?>
</table>
</td>
</tr>
</table>
I hope that you will help me.
ThX.