 
			
				08/02/2013, 10:47
			
			
			     |  
      |    |    |    Fecha de Ingreso: febrero-2013  Ubicación: Vigo  
						Mensajes: 4
					  Antigüedad: 12 años, 8 meses Puntos: 0     |        |  
  |      Respuesta: Error en visualización de acento phpmyadmin        Este es el código de llamada y visualización BBDD 
<?php 
$conexion = mysql_connect($servidor,$usr, $psw); 
mysql_select_db($bd,$conexion); 
$sql = "SELECT * FROM `frases` ORDER BY RAND( )  LIMIT 1"; 
$rstit=mysql_query($sql,$conexion) or die(mysql_error()); 
while($fila1= mysql_fetch_array($rstit)) 
{ 
?>   
<div class="t" style="margin-bottom:5px;background-color:rgb(255, 255, 255);"><span style="font-family:'Century Gothic';"><span style="color:rgb(21, 41, 52);"><? print( $fila1[frase] )  ;?></span></span></div> 
<div class="a" ><? print ($fila1[autor]) ;?></span></a><span ><span style="color:rgb(21, 41, 52);"></span></span></div> 
<? 
} 
mysql_close($conexion); 
?>           |