me podrian ayudar con que es___
Código
<select name="element">
<?php
try
{
/*** query the database ***/
$result = obligatoriodbDB::getInstance()->query("SELECT * from categorias");
/*** loop over the results ***/
foreach($result as $row)
{
/*** create the options ***/
echo '<option value="'.$row['atomicnumber'].'"';
if($row['atomicnumber']==42)
{
echo ' selected';
}
echo '>'. $row['english'] . '</option>'."\n";
}
}
catch(PDOException $e)
{
echo 'No Results';
}
?>
</select>
gracias Saludos


 
  




 Autor
 Autor
		


 En línea
									En línea
								





