I have this code:
<?php
$adm['web'] = "www.tuweb.com";
$adm['titulo'] = "Mi título web";
$campos = array('adm[web]','adm[titulo]');
for ($i=0; $i<count($campos); $i++) {
?>
/* add values in each field in the value="" */
<input type="text" name="<?php echo $campos[$i]; ?>" value="<?php echo ${$campos[$i]}; >"/>
<?php } ?>
The problem i have it´s when generate each field , in the value for each field no works value="" for add the value , only this problem
$camposArray ? why not using it directly ?