asi no me genera error pero en el input_text
me aparece como null osea ta mal el array
gracias
Cita: <?php
include 'conexion.php';//o como sea que te conectes
conectar();
$qry=mysql_query("select * from barrio");
$row=array();
while($r=mysql_fetch_assoc($qry)){
$row[]=array($r['BARRIOS'],$r['COMUNAS']);
}
?>
<form id="form1" name="form1" method="post" action="">
<select name="curso" id="curso" onchange="document.getElementById('data').value=th is.options[this.selectedIndex].getAttribute('BARRIOS')+'\n'+this.options[this.selectedIndex].getAttribute('COMUNAS')">
<?php foreach($row as $v){ ?>
<option value="<?php echo $v[1] ?>"><?php echo $v[0] ?></option>
<?php }?>
</select>
<input type="text" name="data" id="data" value="<?php echo $row[1] ?>"></textarea>
</form>