![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
26/03/2009, 19:18
|
![Avatar de argy](http://static.forosdelweb.com/customavatars/avatar200552_1.gif) | | | Fecha de Ingreso: octubre-2007 Ubicación: Longitud 75º Latitud 18º Sur
Mensajes: 614
Antigüedad: 17 años, 3 meses Puntos: 18 | |
Respuesta: combo box de seleccion multiple y php
Código :
Ver original<?php
if (is_array($_GET["mytextarea"]))
{
$trozos=array();
foreach($_GET["mytextarea"] as $valor)
{
$trozos[] = $valor;
}
//print_r($trozos);
echo $trozos[0];
echo $trozos[1];
}
?>
__________________ Software libre para un mundo libre. Eventualmente en el foro. |