Saludos, tengo un texto en un textarea de 55 caracteres, pero cuando ingreso los datos, se suben correctamente a mi b/d, pero cuando los muestro por pantalla me salen en 3 lineas y a mi me gustaria que quedaran en una sola.
aqui mi codigo de salida en pantalla, es un array:
Código PHP:
<?php
mysql_connect("localhost","root","");
mysql_select_db("datos");
$id = strval( $_REQUEST['usuario1'] );
$sql = "SELECT * FROM datos1 WHERE usuario='{$id}'";
$cursor = mysql_query( $sql );
$fila = mysql_fetch_array( $cursor );?>
<div id="gustar salir" style="position:absolute; left:25px; top:500px; width:162px; height:14px; z-index:4" align="left">
<font style="font-size:14px" color=white face="Arial"><?php echo $fila ['gustar_salir']; ?></font></div>