December
11
2008
foreach in Php stile smart - corsi php
Tutorial->Programmazione-tutorial->Tutorial Php
<h2>Test con Foreach</h2>
<?
$arraytest = array('test','prova');
foreach($arraytest as $valore):?>
<span>Codice HTML <?=$valore?></span>
<?
endforeach;
?>






















