no hay manera de arreglarlo , cuando no pongo la parte de order by , la pagina
me carga bien, no hay problemas, cuando le pongo ese codigo bag, se chafa todo
vpy a colocar el codigo completo a ver q pasa y una imagen de la base de datos a ver si es por ahi donde viene el fallo,
Código PHP:
Ver original<?php require_once('../Connections/prueba.php'); ?>
<?php
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
{
if (PHP_VERSION < 6) {
}
switch ($theType) {
case "text":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "long":
case "int":
$theValue = ($theValue != "") ?
intval($theValue) : "NULL"; break;
case "double":
$theValue = ($theValue != "") ?
doubleval($theValue) : "NULL"; break;
case "date":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "defined":
$theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
break;
}
return $theValue;
}
}
$query_foros = "SELECT * FROM categorias";
?>
<?php do { ?>
<?php
$publicacion_sql = "SELECT id_mensaje FROM mensajes WHERE categoria = " .
$row_foros['id_categorias'];
$ultimo_sql = "SELECT autor , fecha FROM mensaje WHERE categoria = " .
$row_foros['id_categorias'] . "ORDER BY fecha DESC LIMIT 1";
?>
<tr>
<td height="46" class="categoria1">
<div align="left" class="categoria2"><a href="untitled-8.php?cat=<?php echo $row_foros['id_categorias']; ?>"><font color="#FFFFFF"><?php echo $row_foros['nombre']; ?></font></a><br />
<span class="categoria4"><?php echo $row_foros['descripcion']; ?></span>
</div></td>
<td class="categoria2">
<?php
echo $up ['fecha'] ;
echo '</br>' ;
echo $up ['autor'] ;
?>
</td>
</tr>
</table>
<p> </p>
<p> </p>
</body>
</html>
<?php
?>
http://imageshack.us/photo/my-images/502/dibujoxim.jpg/