Salve a tutti è il mio primo post in questo forum nn sono molto esperto in php e per questo vorrei una mano...
Il mio problema e che dopo aver creato una specie di matrice la dovrei ridurre in numero di istruzioni usando il ciclo for, questo è il codice:
<html>
<head>
<title>MATRICE IN PHP</title>
</head>
<body>
<?php
$matrice=Array("col1" => array("1","5","9"),"col2" => array("2","6","10"),"col3" => array("3","7","11"),"col4" => array("4","8","12"));
?>
<table border=1>
<tr>
<td><?php echo $matrice["col1"][0];?></td>
<td><?php echo $matrice["col2"][0];?></td>
<td><?php echo $matrice["col3"][0];?></td>
<td><?php echo $matrice["col4"][0];?></td>
</tr>
<tr>
<td><?php echo $matrice["col1"][1];?></td>
<td><?php echo $matrice["col2"][1];?></td>
<td><?php echo $matrice["col3"][1];?></td>
<td><?php echo $matrice["col4"][1];?></td>
</tr>
<tr>
<td><?php echo $matrice["col1"][2];?></td>
<td><?php echo $matrice["col2"][2];?></td>
<td><?php echo $matrice["col3"][2];?></td>
<td><?php echo $matrice["col4"][2];?></td>
</tr>
</table>
</body>
</html>
Qualche suggerimento????
Il mio problema e che dopo aver creato una specie di matrice la dovrei ridurre in numero di istruzioni usando il ciclo for, questo è il codice:
<html>
<head>
<title>MATRICE IN PHP</title>
</head>
<body>
<?php
$matrice=Array("col1" => array("1","5","9"),"col2" => array("2","6","10"),"col3" => array("3","7","11"),"col4" => array("4","8","12"));
?>
<table border=1>
<tr>
<td><?php echo $matrice["col1"][0];?></td>
<td><?php echo $matrice["col2"][0];?></td>
<td><?php echo $matrice["col3"][0];?></td>
<td><?php echo $matrice["col4"][0];?></td>
</tr>
<tr>
<td><?php echo $matrice["col1"][1];?></td>
<td><?php echo $matrice["col2"][1];?></td>
<td><?php echo $matrice["col3"][1];?></td>
<td><?php echo $matrice["col4"][1];?></td>
</tr>
<tr>
<td><?php echo $matrice["col1"][2];?></td>
<td><?php echo $matrice["col2"][2];?></td>
<td><?php echo $matrice["col3"][2];?></td>
<td><?php echo $matrice["col4"][2];?></td>
</tr>
</table>
</body>
</html>
Qualche suggerimento????