All pastes #2090254 Raw Edit

Stuff

public text v1 · immutable
#2090254 ·published 2011-10-15 09:03 UTC
rendered paste body
<?php
	$filas=$_GET[filas];
	$columnas=$_GET[columnas];
	$contador=0;
	echo"<div align=\"center\"><table border=\"1\" align=\"center\">";
		if($filas==0)
		{
			echo"<font size=\"4\" color=\"red\">Error; no ha insertado filas <a href=\"ajedrez.php\">volver</a>.</font>";
		}
		else
		{
			if($columnas==0)
			{
				echo"<font size=\"4\" color=\"red\">Error; no ha insertado columnas <a href=\"ajedrez.php\">volver</a>.</font>";
			}
			else
			{
				while($filas>0)
				{
					echo"<tr>";
					$filas--;
						while($columnas>0)
						{
							echo"<td height=\"100\" width=\"100\"";
							if($filas%2.5!=0)
							{
								echo"bgcolor=\"black\" >";
							}
							else
							{
								echo"bgcolor=\"white\" >";
							}
							echo"</td>";
							$columnas--;
						}
					$columnas=$_GET[columnas];
					echo"</tr>";
				}
			}
		}
	echo"</table></div>";
?>