Ver Mensaje Individual
  #3 (permalink)  
Antiguo 29/11/2008, 09:56
Avatar de chelotourn
chelotourn
 
Fecha de Ingreso: noviembre-2008
Ubicación: 209.62.30.26
Mensajes: 15
Antigüedad: 15 años, 5 meses
Puntos: 0
Respuesta: Limitar Cantidad de Caracteres en Consulta mysql

GraX men es lo que buscaba. correguido queda asi

Código PHP:
<?
$conexion 
mysql_connect("localhost""xxxx""zzzzz");
mysql_select_db("yyyyyy"$conexion);

$queCamp "SELECT * FROM tabla";
$resCamp mysql_query($queCamp$conexion) or die(mysql_error());
$totCamp mysql_num_rows($resCamp);
if (
$totCamp0) {
    while (
$rowEmp mysql_fetch_assoc($resCamp)) {

     
$desc substr$rowEmp['descripcion'], 256);
     echo 
$desc;

}} 
?>