Ver Mensaje Individual
  #17 (permalink)  
Antiguo 15/07/2010, 06:12
johhan16
 
Fecha de Ingreso: junio-2010
Ubicación: Venezuela, Zulia
Mensajes: 686
Antigüedad: 14 años, 4 meses
Puntos: 55
Respuesta: Necesito ayuda

prueba esto a ver si te funciona



Código PHP:
<? $consulta2"select * from foro order by id desc";
$resultado2mysql_query($consulta2);
$nummysql_num_rows($resultado2);
for (
$i=0;$i<$num;$i++)
{
$rowmysql_fetch_array($resultado2);
$url1= ($row['url']);
$url_act= @fopen($url1,'r');
$imagen2= ($row['imagen']);
$_SESSION['imagen2'] = $imagen2;
$ruta$_SESSION['imagen2'];


$width80;
$break"<br />\n";
$cuttrue;
$comentario= ($row['comentario']);


//aqui agregue un if
if($row['username']== $_SESSION['username']) {

echo 
"<td>".redimensionar($ruta,$ancho,$alto)."<fon t face=arial size=1 color=#999999> ".($row['fecha'])." | ".($row['hora'])." | </font><font face=arial size=2 color=#0080C0><strong> ". ($row['username']). "</strong> | dijo:</font> <font face=arial size=2 color=#999999>".wordwrap($comentario,$width,$break )." <a href=".($row['url'])." target=_blank class=URL>".($row['url'])."</a><a href='eliminar.php?id=".$row['id']."'>eliminar</a></td></tr></table>";
echo 
"<font face=arial size=2 color=#C6ECFF>"
}
else
{
echo 
"<td>".redimensionar($ruta,$ancho,$alto)."<fon t face=arial size=1 color=#999999> ".($row['fecha'])." | ".($row['hora'])." | </font><font face=arial size=2 color=#0080C0><strong> ". ($row['username']). "</strong> | dijo:</font> <font face=arial size=2 color=#999999>".wordwrap($comentario,$width,$break )." <a href=".($row['url'])." target=_blank class=URL>".($row['url'])."</a></td></tr></table>";
echo 
"<font face=arial size=2 color=#C6ECFF>"
}

?>
edito: me habia equivocado al escribir el codigo alli esta corregido

Última edición por johhan16; 15/07/2010 a las 06:20