Jump to content

Reporte de bug


Recommended Posts

El foro tiene un bug con el tag code, que es para insertar código, y con el editor de texto. Resulta que si posteas código php funciona bien, pero si quieres editarlo, no se puede, queda todo el código mal.

 

Por ejemplo:

 

&--#60;?php
$tag = stripslashes($_GET['tag']);

$resultados = (int)$_GET['res'];
if(!$resultados)
$resultados="0";

if($tag){
 $query = mysql_query("SELECT Nombre, Precio, Foto, id_producto, unidad_venta FROM Producto WHERE Tags LIKE '%$tag%' OR Nombre LIKE '%$tag%' OR Descripcion LIKE '%$tag%'");
 if( mysql_num_rows($query) == 0 ) echo '&--#60;div class"error"&--#62;No se encontraron resultados!&--#60;/div&--#62;';
 else echo "Resultados para $tag :";
}
else $query = mysql_query('SELECT Nombre, Precio, Foto, id_producto, unidad_venta FROM Producto LIMIT '.$resultados.',10');
echo ' &--#60;div class="contenedor"&--#62;&--#60;table border="0" width="100%"&--#62;
 &--#60;tbody&--#62;&--#60;tr&--#62;&--#60;td&--#62; &--#60;/td&--#62;&--#60;td&--#62;&--#60;b&--#62;Nombre producto&--#60;/b&--#62;&--#60;/td&--#62;&--#60;td&--#62;&--#60;b&--#62;Precio&--#60;/b&--#62;&--#60;/td&--#62;&--#60;td&--#62;&--#60;b&--#62;&--#60;center&--#62;Unidad de venta&--#60;/center&--#62;&--#60;/b&--#62;&--#60;/td&--#62;&--#60;td&--#62; &--#60;/td&--#62;&--#60;td&--#62; &--#60;/td&--#62;&--#60;/tr&--#62;';
while ($row = mysql_fetch_assoc($query)) {
echo '&--#60;tr&--#62;';
 echo '&--#60;td&--#62;';
 if(!$row['Foto']){
  echo '&--#60;center&--#62;&--#60;img src="img/no_image.gif" width="100" height="100"&--#62;&--#60;/center&--#62;';
 }
 echo '&--#60;/td&--#62;&--#60;td&--#62;';
 echo $row['Nombre'];
 echo '&--#60;/td&--#62;&--#60;td&--#62;$';
 echo $row['Precio'];
 echo '&--#60;/td&--#62;&--#60;td&--#62;&--#60;center&--#62;';
 echo $row['unidad_venta'];
 echo '&--#60;/center&--#62;&--#60;/td&--#62;&--#60;td&--#62;';
 $id = $row['id_producto'];
 echo '&--#60;center&--#62;&--#60;a href="pedido/request.php?id='.$id.'&q=1"&--#62;&--#60;img src="'.$url.'img/boton_comprar.png" height="35"&--#62;&--#60;/a&--#62;&--#60;/center&--#62;&--#60;/td&--#62;';
 echo '&--#60;/td&--#62;&--#60;td&--#62;';
 echo '&--#60;center&--#62;&--#60;a href="productos/index.php?id='.$id.'" &--#62;';
 echo '&--#60;img src="img/boton_info.png" height="35"&--#62;&--#60;/a&--#62;&--#60;/center&--#62;&--#60;/td&--#62;';
echo '&--#60;/tr&--#62;';
}
echo '&--#60;/tbody&--#62;
  &--#60;/table&--#62;&--#60;center&--#62;';

if($resultados&--#62;0){
$anteriores = $resultados - 10;
if ($anteriores&--#60;0) $anteriores = 0;
echo'&--#60;a href="index.php?res=',$anteriores,'"&--#62;Anterior&--#60;/a&--#62; ';
}

if(mysql_num_rows($query)==10){
echo'&--#60;a href="index.php?res=',$resultados+10,'"&--#62; Siguiente&--#60;/a&--#62; ';
}
echo '&--#60;/center&--#62;&--#60;/div&--#62;&--#60;br&--#62;&--#60;br&--#62;';
?&--#62;

 

cambia todos los tags html <>

Edited by zafrada
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...