Ver Mensaje Individual
  #3 (permalink)  
Antiguo 13/09/2010, 20:25
Avatar de gachon
gachon
 
Fecha de Ingreso: septiembre-2004
Ubicación: En Google
Mensajes: 462
Antigüedad: 20 años, 2 meses
Puntos: 3
Respuesta: obtener indice con foreach

realmente codigo es asin
Código PHP:
<select name="action">
<option value="">Escoger de la Lista</option>
<?php
$source 
'content.xml';
// load as string
$xmlstr file_get_contents($source);
$sitemap = new SimpleXMLElement($xmlstr);
// load as file
$sitemap = new SimpleXMLElement($source,null,true);
foreach(
$sitemap->children() as $key=>$content) {
$atributo $content->attributes();
echo 
"<option value='".$key."'>".$content->getName(). "</option>";
}
?>
</select>
pero al mostra datos
con
Código PHP:
".$content->getName(). " 
me trae gallery y gallery
pero yo quiero que me traiga 0 y 1