
26/03/2009, 19:18
|
 | | | Fecha de Ingreso: octubre-2007 Ubicación: Longitud 75º Latitud 18º Sur
Mensajes: 614
Antigüedad: 17 años, 4 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. |