Dispongo del siguiente codigo
Código PHP:
Ver original
<?php { } include ("setup.php"); $averiado ='NO'; $ubic = 'CENTRAL'; $dispon = 'SI'; ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Documento sin título</title> </head> <body> <form id="form1" name="form1" method="post" action=""> <textarea name="texto" id="texto"></textarea> <input type="submit" name="button" id="button" value="Enviar" /> </form> <?php foreach ($texto as $indice => $valor) { mysql_query("INSERT INTO equipos VALUES ('','1','2','$valor','$averiado','$ubic','$dispon')") or die(mysql_error()); } ?> </body> </html>
segun el codigo, debe insertarme por cada linea del textarea, un registro en la tabla de la BBDD, y lo hace, pero al final de cada campo perteneciente a cada linea del textarea me añade un <br /> y necesito que no me añada nada, solo el texto de la linea
¿Alguien me puede ayudar? Llevo tiempo dándole vueltas y no encuentro solución. He probado con \r\n y \n.
Muchas Gracias