
11/10/2008, 02:49
|
 | | | Fecha de Ingreso: mayo-2007
Mensajes: 282
Antigüedad: 17 años, 10 meses Puntos: 0 | |
Respuesta: str_replace Al final la solución ha sido esta.
$Prueba = ‘rojo, azul, verde amarillo naranja’;
$Prueba = str_replace(',','',$ Prueba);
$Prueba = str_replace(' ',', ',$ Prueba);
Echo = $Prueba;
Muchas gracias por la ayuda |