Foros del Web » Programando para Internet » PHP »

[SOLUCIONADO] error de sintaxis ..?

Estas en el tema de error de sintaxis ..? en el foro de PHP en Foros del Web. a ver si me podeis ayudar en este error:os dejo el codigo; @import url("http://static.forosdelweb.com/clientscript/vbulletin_css/geshi.css"); Código PHP: Ver original <?php       require ( 'seguridad.php' ...
  #1 (permalink)  
Antiguo 14/01/2014, 08:56
 
Fecha de Ingreso: mayo-2012
Mensajes: 363
Antigüedad: 11 años, 11 meses
Puntos: 0
error de sintaxis ..?

a ver si me podeis ayudar en este error:os dejo el codigo;
Código PHP:
Ver original
  1. <?php
  2.  
  3.     require('seguridad.php');
  4.     conectar_base_datos();
  5.     $consulta = mysql_query("SELECT * FROM ex_usuarios WHERE usuario = '$us'");
  6.     $row = mysql_fetch_array($consulta);
  7.     echo "Bienvenido: <b>$row[7]</b>";
  8.  
  9.     echo "<html><head><title>Mapa 2</title><script type='text/javascript' src='js_ajax.js'></script><link href='estilos_mapa.css' rel='stylesheet' type='text/css'></head><body>";
  10.     echo "<center><h1>Mapa del Mundo</h1></center>";
  11.     if ($_GET['x'] < 1 || $_GET['x'] > 100 || $_GET['y'] < 1 || $_GET['y'] > 100) {
  12.         echo "<center><h3>Mapa Fuera de Rango</h3><p>S贸lo valores entre 1 y 100 para X e Y.</p></center>";
  13.     } else {
  14.         $y = $_GET['y'] - 2;
  15.         echo "<table align='center' class='mapa2'>";
  16.         for ($a = 0; $a < 5; $a++) {
  17.             $x = $_GET['x'] - 2;
  18.             echo "<tr>";
  19.             for ($b = 0; $b < 5; $b++) {
  20.                 $consulta = mysql_query("SELECT * FROM ex_mapa2 WHERE x = '$x' and y = '$y' ORDER BY x, y");
  21.                 $array = mysql_fetch_array($consulta);
  22.                 echo "<td >";
  23.                 if ($x > 100 or $y > 100 or $x < 1 or $y < 1) {
  24.                     echo "";
  25.                 } else {
  26.                     echo "<div onmouseover=\"iniciarConsulta('mapa2_con.php?x=$x&y=$y');\" onmousemove=\"cursor('resultado');\" onmouseout=\"esconder('resultado');\" style='width: 50px; height:50px;'><a href='mapa2.php?x=$array[2]&y=$array[3]'>$array[2]/$array[3]</a></div>";
  27.                 }
  28.                 echo "</td>";
  29.                 $x++;
  30.             }
  31.             echo "</tr>";
  32.             $y++;
  33.         }
  34.     }
  35.     $x_ = $_GET['x'];
  36.     $x_1 = $_GET['x'] - 1;
  37.     $x1 = $_GET['x'] + 1;
  38.     $y_ = $_GET['y'];
  39.     $y_1 = $_GET['y'] - 1;
  40.     $y1 = $_GET['y'] + 1;
  41.  
  42.     echo "</table>";
  43.     echo "<table align='center'><tr><td colspan='3'>";
  44.     if ($_GET['y'] <= 1) {
  45.         echo "";
  46.     } else {
  47.         echo "<center><a href='mapa2.php?x=$x_&y=$y_1'><img src='img/flecha_up.png'></a></center>";
  48.     }
  49.     echo "</td></tr><tr><td>";
  50.     if ($_GET['x'] <= 1) {
  51.         echo "";
  52.     } else {
  53.         echo "<a href='mapa2.php?x=$x_1&y=$y_'><img src='img/flecha_left.png'></a>";
  54.     }
  55.     echo "</td><td><form action='mapa2.php' method='GET'>X : <input type='text' name='x' size='1' maxlength='3'> Y: <input type='text' name='y' size='1' maxlength='3'><input type='submit' value='IR'></form>";
  56.     echo "<td>";
  57.     if ($_GET['x'] >= 100) {
  58.         echo "";
  59.     } else {
  60.         echo "<a href='mapa2.php?x=$x1&y=$y_'><img src='img/flecha_right.png'></a>";
  61.     }
  62.     echo "</td></tr><tr><td colspan='3'>";
  63.     if ($_GET['y'] == 100) {
  64.         echo "";
  65.     } else {
  66.         echo "<center><a href='mapa2.php?x=$x_&y=$y1'><img src='img/flecha_down.png'></a></center>";
  67.     }
  68.  
  69.     echo "</td></tr></table><div class='anuncio' id='resultado'></div><center><a href='main.php'>Volver</a></center></body></html>";
  70. }
  71. ?>
  #2 (permalink)  
Antiguo 14/01/2014, 08:57
 
Fecha de Ingreso: mayo-2012
Mensajes: 363
Antigüedad: 11 años, 11 meses
Puntos: 0
Respuesta: error de sintasis ..?

aqui el error que me muestra

http://prntscr.com/2j9rot

vale ya lo arregle;quitando el }

pero aun me falla algo porque no tendria q salir asi:

http://prntscr.com/2j9ssm

salta fuera de rango tendria q salir lo primero ....

Última edición por santi2892009; 14/01/2014 a las 09:03
  #3 (permalink)  
Antiguo 14/01/2014, 14:27
 
Fecha de Ingreso: enero-2014
Mensajes: 75
Antigüedad: 10 años, 3 meses
Puntos: 11
Respuesta: error de sintaxis ..?

Santi, sabes hacer un debug?.

No se que ide usaras, pero para programar es muy importante hacer debug del codigo, asi se encuentran los errores.

Para ayudarte, dime como querrías que saliera la pagina, porque no entiendo muy bien como querrías que saliese.

Saludos.
  #4 (permalink)  
Antiguo 14/01/2014, 15:11
 
Fecha de Ingreso: mayo-2012
Mensajes: 363
Antigüedad: 11 años, 11 meses
Puntos: 0
Respuesta: error de sintaxis ..?

mira tendria q salir asi:http://prntscr.com/2jdcu8

el tema que e cambiado el codigo pero en la url no m coje el id d cada personaje?,
Código PHP:
Ver original
  1. <?php
  2.  
  3.     require('seguridad.php');
  4.     conectar_base_datos();
  5.     $consulta = mysql_query("SELECT * FROM ex_usuarios WHERE usuario");
  6.     $row = mysql_fetch_array($consulta);
  7.     echo "Bienvenido: <b>$row[7]</b>";
  8.  
  9.     echo "<html><head><title>Mapa 2</title><script type='text/javascript' src='js_ajax.js'></script><link href='estilos_mapa.css' rel='stylesheet' type='text/css'></head><body>";
  10.     echo "<center><h1>Mapa del Mundo</h1></center>";
  11.     if ($_GET['x'] < 1 || $_GET['x'] > 100 || $_GET['y'] < 1 || $_GET['y'] > 100) {
  12.         echo "<center><h3>Mapa Fuera de Rango</h3><p>Sólo valores entre 1 y 100 para X e Y.</p></center>";
  13.     } else {
  14.         $y = $_GET['y'] - 2;
  15.         echo "<table align='center' class='mapa2'>";
  16.         for ($a = 0; $a < 5; $a++) {
  17.             $x = $_GET['x'] - 2;
  18.             echo "<tr>";
  19.             for ($b = 0; $b < 5; $b++) {
  20.                 $consulta = mysql_query("SELECT * FROM mapa2 WHERE x = '$x' and y = '$y' ORDER BY x, y");
  21.                 $array = mysql_fetch_array($consulta);
  22.                 echo "<td >";
  23.                 if ($x > 100 or $y > 100 or $x < 1 or $y < 1) {
  24.                     echo "";
  25.                 } else {
  26.                     echo "<div onmouseover=\"iniciarConsulta('mapa2_con.php?x=$x&y=$y');\" onmousemove=\"cursor('resultado');\" onmouseout=\"esconder('resultado');\" style='width: 50px; height:50px;'><a href='mapa2.php?x=$array[2]&y=$array[3]'>$array[2]/$array[3]</a></div>";
  27.                 }
  28.                 echo "</td>";
  29.                 $x++;
  30.             }
  31.             echo "</tr>";
  32.             $y++;
  33.         }
  34.     }
  35.     $x_ = $_GET['x'];
  36.     $x_1 = $_GET['x'] - 1;
  37.     $x1 = $_GET['x'] + 1;
  38.     $y_ = $_GET['y'];
  39.     $y_1 = $_GET['y'] - 1;
  40.     $y1 = $_GET['y'] + 1;
  41.  
  42.     echo "</table>";
  43.     echo "<table align='center'><tr><td colspan='3'>";
  44.     if ($_GET['y'] <= 1) {
  45.         echo "";
  46.     } else {
  47.         echo "<center><a href='mapa2.php?x=$x_&y=$y_1'><img src='img/flecha_up.png'></a></center>";
  48.     }
  49.     echo "</td></tr><tr><td>";
  50.     if ($_GET['x'] <= 1) {
  51.         echo "";
  52.     } else {
  53.         echo "<a href='mapa2.php?x=$x_1&y=$y_'><img src='img/flecha_left.png'></a>";
  54.     }
  55.     echo "</td><td><form action='mapa2.php' method='GET'>X : <input type='text' name='x' size='1' maxlength='3'> Y: <input type='text' name='y' size='1' maxlength='3'><input type='submit' value='IR'></form>";
  56.     echo "<td>";
  57.     if ($_GET['x'] >= 100) {
  58.         echo "";
  59.     } else {
  60.         echo "<a href='mapa2.php?x=$x1&y=$y_'><img src='img/flecha_right.png'></a>";
  61.     }
  62.     echo "</td></tr><tr><td colspan='3'>";
  63.     if ($_GET['y'] == 100) {
  64.         echo "";
  65.     } else {
  66.         echo "<center><a href='mapa2.php?x=$x_&y=$y1'><img src='img/flecha_down.png'></a></center>";
  67.     }
  68.  
  69.     echo "</td></tr></table><div class='anuncio' id='resultado'></div><center><a href='main.php'>Volver</a></center></body></html>";
  70.  
  71. ?>

el enlace a esta pagina lo e construido asi:
Código PHP:
Ver original
  1. <?php
  2.                 $consulta = mysql_query("SELECT * FROM ex_mapa2 WHERE usuario = '$row[7]'");
  3.                 $row = mysql_fetch_assoc($consulta);
  4.                 $x = $row['x'];
  5.                 $y = $row['y'];
  6.                             echo "<li><a href='mapa2.php?x=$x&y=$y'>Mapa</a></li>";
  7.             ?>
  #5 (permalink)  
Antiguo 15/01/2014, 01:55
 
Fecha de Ingreso: enero-2014
Mensajes: 75
Antigüedad: 10 años, 3 meses
Puntos: 11
Respuesta: error de sintaxis ..?

Los parametros x / y de la direccion web los crea bien?

Cita:
$consulta = mysql_query("SELECT * FROM ex_usuarios WHERE usuario");
La clausula where de esta linea esta mal, no le especificas nada.

El problema es que siempre te sale que los valores estan fuera de rango?

Saludos.
  #6 (permalink)  
Antiguo 15/01/2014, 05:14
 
Fecha de Ingreso: mayo-2012
Mensajes: 363
Antigüedad: 11 años, 11 meses
Puntos: 0
Respuesta: error de sintaxis ..?

Si ese el problema q siempre m da q los valores estan fuera de rango
  #7 (permalink)  
Antiguo 15/01/2014, 05:17
 
Fecha de Ingreso: mayo-2012
Mensajes: 363
Antigüedad: 11 años, 11 meses
Puntos: 0
Respuesta: error de sintaxis ..?

los parametros x y si los crea bien te refieres en la tabla?,si es asi si,el tema es donde tu dices en el where,pero claro no se como arreglar eso q salga dentro de rango
  #8 (permalink)  
Antiguo 15/01/2014, 06:12
 
Fecha de Ingreso: mayo-2012
Mensajes: 363
Antigüedad: 11 años, 11 meses
Puntos: 0
Respuesta: error de sintaxis ..?

espera q creia q si insertaba x y. Parece q no...
  #9 (permalink)  
Antiguo 15/01/2014, 07:35
 
Fecha de Ingreso: enero-2014
Mensajes: 75
Antigüedad: 10 años, 3 meses
Puntos: 11
Respuesta: error de sintaxis ..?

Bueno, vamos a empezar a analizar errores:

Pegame la direccion donde sale los parametros x e y.

Por ejemplo:

www.tuweb.com/index.php?x=3&Y=2

y seguimos a partir de ahí.
  #10 (permalink)  
Antiguo 15/01/2014, 08:09
 
Fecha de Ingreso: mayo-2012
Mensajes: 363
Antigüedad: 11 años, 11 meses
Puntos: 0
Respuesta: error de sintaxis ..?

Código HTML:
Ver original
  1. <title>The Lone Warrior</title>
  2. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  3. <script src="estilo/temas/default/templates/jquery-1.4.2.min.js" type="text/javascript"></script>
  4. <script src="estilo/temas/default/templates/menu.js" type="text/javascript"></script>
  5.  
  6.     $(document).ready(function(){
  7.         $('#commerce').click(function(){
  8.  
  9.             $('#chat_iframe').attr('src','../includes/chat/index.php?branch=login&room=comercio');
  10.         });
  11.     });
  12.  
  13.     $(document).ready(function(){
  14.         $('#initial').click(function(){
  15.  
  16.             $('#chat_iframe').attr('src','../includes/chat/index.php?branch=login&room=inicial');
  17.         });
  18.     });
  19.  
  20. function request_resources_state()
  21. {
  22.  
  23.     $.ajax({
  24.         type: "GET",
  25.         dataType:'json',
  26.         url: "../includes/funciones/request_resources_state.php",
  27.         success: function(datos){
  28.             $('#gold').html("ORO: "+datos.gold);
  29.             $('#oil').html("PETROLEO: "+datos.petroleo);
  30.             $('#diesel').html("DIESEL: "+datos.diesel);
  31.             $('#gas').html("GASOLINA: "+datos.gasolina);
  32.             $('#ammo').html("MUNICION: "+datos.municion);
  33.             $('#puntos').html("PUNTOS: "+datos.puntos);
  34.             $('#ticket').html("TICKET: "+datos.ticket);
  35.         }
  36.     });
  37. }
  38. function opencharpopup(){
  39. var popurl='index.php?ir=verpj'
  40. winpops=window.open(popurl,'','width=250,height=500,scrollbars')
  41. }
  42. function openmappopup(){
  43. var popurl='index.php?ir=mapa'
  44. winpops=window.open(popurl,'','width=501,height=501,scrollbars')
  45. }
  46.    <script type="text/javascript">
  47.       document.onkeyup = KeyCheck;      
  48.      
  49.       function KeyCheck(e)
  50.       {
  51.          var KeyID = (window.event) ? event.keyCode : e.keyCode;
  52.          
  53.          switch(KeyID)
  54.          {
  55.             case 104:
  56.                document.navi.keydir.value = "north";
  57.                document.navi.submit();
  58.                break;
  59.             case 100:
  60.                document.navi.keydir.value = "west";
  61.                document.navi.submit();
  62.                break;
  63.             case 102:
  64.                document.navi.keydir.value = "east";
  65.                document.navi.submit();
  66.                break;
  67.             case 98:
  68.                document.navi.keydir.value = "south";
  69.                document.navi.submit();
  70.                break;
  71.             case 103: // numpad 7
  72.                document.navi.keydir.value = "north_west";
  73.                document.navi.submit();
  74.                break;
  75.             case 105: // numpad 9
  76.                document.navi.keydir.value = "north_east";
  77.                document.navi.submit();
  78.                break;
  79.             case 99: // numpad 3
  80.                document.navi.keydir.value = "south_east";
  81.                document.navi.submit();
  82.                break;
  83.             case 97: // numpad 1
  84.                document.navi.keydir.value = "south_west";
  85.                document.navi.submit();
  86.                break;
  87.          }
  88.       }
  89.       setInterval('request_resources_state()',5000);
  90.    </script>
  91. <link rel="stylesheet" type="text/css" href="estilo/temas/default/templates/style2.css">
  92.  
  93. </head>
  94. <!-- Save for Web Slices (new.psd) -->
  95. <table id="Table_01" width="957" height="671" border="0" cellpadding="0" cellspacing="0" style="position:relative;margin: 0 auto;">
  96.     <tr>
  97.         <td colspan="3">
  98.             <img src="estilo/temas/{{tema}}/imagenes/login/new1_01.png" width="957" height="1" alt=""></td>
  99.     </tr>
  100.     <tr>
  101.         <td colspan="2">
  102.             <div id="header">
  103.         <div id="nav">
  104.             <ul>
  105.                 <li style=" margin-left: 13px; "><a href="index.php">HOME</a></li>
  106.                 <li style=" left: -9px;position: relative; "><a href="">MAPA</a></li>
  107.                 <li style="  left: -2.2%; position: relative; "><a href="index.php?ir=clan&accion=clan">ALIANZA</a></li>
  108.                 <li style="position: relative; left: -2.5%;"><a href="index.php?ir=ranking&accion=ranking">RANKING</a></li>
  109.                 <li style="  left: -2%; position: relative; "><a href="">TRABAJOS</a></li>
  110.                 <li style="position: relative;left: -2.5%;"><a href="">GANANCIA</a></li>
  111.                 <li style="position: relative;left: -2.5%;"><a href="index.php?ir=perfil&accion=perfil">PERFIL</a></li>
  112.                 <li style="  left: -2%; position: relative;"><a style="color:red;" href="">PREMIUM</a></li>
  113.                 <li style=" left: 1%; position: relative; "><a href="index.php?ir=salir&accion=salir">SALIR</a></li>
  114.             </ul>
  115.         </div>
  116.     </div>
  117.             </td>
  118.        
  119.         <td rowspan="5">
  120.             <img src="estilo/temas/{{tema}}/imagenes/login/new1_03.png" width="62" height="670" alt=""></td>
  121.     </tr>
  122.     <tr>
  123.         <td colspan="2">
  124.             <div id="inter-menu">
  125.                 <div id="nav-menu">
  126.             <ul>     {{topnav}}
  127.                 <li style=" margin-left: -6px; "><a id="puntos" class="boton" href="">PUNTOS</a></li>
  128.                 <li style=" margin-left: -3px; "><a id="oil" class="boton" href="">PETROLEO</a></li>
  129.                 <li style=" margin-left: -2px; "><a id="gas" class="boton" href="">GASOLINA</a></li>
  130.                 <li><a id="diesel" class="boton" href="">DIESEL</a></li>
  131.                 <li style=" margin-left: -1px; "><a id="ammo" class="boton" href="">MUNICION</a></li>
  132.                 <li><a id="gold" class="boton" href="">ORO</a></li>
  133.                 <li><a id="ticket" class="boton" href="">TICKET</a></li>
  134.                            
  135.             </ul>
  136.         </div>
  137.             </div>
  138.             </td>
  139.     </tr>
  140.     <tr>
  141.         <td rowspan="2">
  142.             <div id="apDiv2">
  143.  
  144. <div id="apDiv3"><DIV><a href='index.php?ir=mensajero'>mensajes</a></div></div>
  145. <div id="apDiv4"><DIV><input style="position: relative;left:9px;" type="text" name="textfield" id="textfield" /></div></div>
  146. <DIV> TIMERS  </DIV>
  147. <div id="accordian">
  148. <div align="left">
  149.  
  150.     <ul>
  151.         <li>
  152.             <h3><span class="icon-dashboard"></span>tablas</h3>
  153.             <ul>
  154.                 <li><a href="index.php?ir=tabla edificios">tabla edificios</a></li>
  155.                 <li><a href="index.php?ir=tabla viviendas">tabla viviendas</a></li>
  156.                 <li><a href="index.php?ir=tabla banco">tabla niveles banco</a></li>
  157.                 <li><a href="index.php?ir=tabla municion-petroleo">tabla almacen municion-petroleo</a></li>
  158.             </ul>
  159.         </li>
  160.         <!-- we will keep this LI open by default -->
  161.         <li class="active">
  162.             <h3><span class="icon-tasks"></span>informes</h3>
  163.             <ul>
  164.                 <li><a href="#">AQUI SALDRAN LOS INFORMES DE COMBATE</a></li>
  165.                
  166.             </ul>
  167.         </li>
  168.         <li>
  169.             <h3><span class="icon-calendar"></span>notas</h3>
  170.             <ul>
  171.                 <li><a href="#">AQUI TENDRIA QUE SALIR LAS NOTAS</a></li>
  172.                 <h3><span class="icon-calendar"></span>SOPORTE</h3>
  173.                 <li><a href="#">COMO SE JUEGA</a></li>
  174.                 <li><a href="#">CONTACTA CON NOSOTROS</a></li>
  175.                 <li><a href="#">FORO</a></li>
  176.             </ul>
  177.         </li>
  178.         <li>
  179.             <h3><span class="icon-heart"></span>TABLAS DE ARMAS</h3>
  180.             <ul>
  181.                 <li><a href="#">TABLA ARMAS</a></li>
  182.                 <li><a href="#">TABLA EDIFICIOS</a></li>
  183.           </ul>
  184.         </li>
  185.         <li>
  186.         <h3><span class="icon-heart"></span>LISTA DE AMIGOS</h3>
  187.             <ul>
  188.                 <li><a href="#">SE HARA UNA LISTA DE AMIGOS</a></li>
  189.           </ul>
  190.         </li>
  191. [COLOR="Red"]<?php
  192.                 $consulta = mysql_query("SELECT * FROM ex_mapa2 WHERE usuario = '$row[7]'");
  193.                 $row = mysql_fetch_assoc($consulta);
  194.                 $x = $row['x'];
  195.                 $y = $row['y'];
  196.                             echo "<li><a href='mapa2.php?x=$x&y=$y'>Mapa</a></li>";
  197.             ?>
  198.         [/COLOR]
  199.                 <!-- prefix free to deal with vendor prefixes -->
  200. </div>
  201.  
  202. </td>
  203.         <td>
  204.             <div id="apDiv21">{{content}}</div>
  205.             </td>
  206. </tr>
  207.  
  208.     <tr>
  209.         <td>
  210.             <div class="chat">
  211.                 <iframe class="chat_iframe" style='width:100%;position: relative;top:-73px' scrolling="false" frameborder="0" name="LTuser_status" id="chat_iframe" scrolling="auto" src='../includes/chat/index.php?branch=login'></iframe>
  212.                 <a id="initial" style="cursor:pointer;color:#FBECBB;position: relative; top: -141px; left: 42%;">Sala Inicial</a>
  213.                 <a id="commerce" style="cursor:pointer; color:#FBECBB; position: relative; top: -114px; left: 31%;">Sala Comercio</a>
  214.                 </div>
  215.  
  216.         </td>
  217.     </tr>
  218.     <tr>
  219.         <td colspan="2">
  220.             <img src="estilo/temas/{{tema}}/imagenes/login/new1_08.png" width="895" height="14" alt=""></td>
  221.     </tr>
  222.  
  223.  
  224.  
  225. </body>
  226. </html>
  #11 (permalink)  
Antiguo 15/01/2014, 08:10
 
Fecha de Ingreso: mayo-2012
Mensajes: 363
Antigüedad: 11 años, 11 meses
Puntos: 0
Respuesta: error de sintaxis ..?

nose si querias ver el codigo entero de la pagina que muestra el enlace al mapa

en la linea 196 estaria enlace a la pagina
-----------------------------------------------------------------
la url de la pagina seria esta la q muestra el mapa:
http://www.the-lone-warrior49.com/mapa2.php?x=1&y=$y
-------------------------------------------------------------------

confirmado no a ingresado x y en la tabla de mapa2,q ese es el problema de que salga fuera de rango no ingresa en la tabla el id ni x y

Última edición por santi2892009; 15/01/2014 a las 08:46
  #12 (permalink)  
Antiguo 15/01/2014, 11:46
 
Fecha de Ingreso: mayo-2012
Mensajes: 363
Antigüedad: 11 años, 11 meses
Puntos: 0
Respuesta: error de sintaxis ..?

X lo visto m faltaba incluir una funcion en registro.php para insertase los datos en la tabla ex_mapa,el tema q no secomo incluir el tema,voy. Ver si puedo hacerlo y sino lo posteo aqui a ver si m podeis echar una mano
  #13 (permalink)  
Antiguo 16/01/2014, 03:04
 
Fecha de Ingreso: enero-2014
Mensajes: 75
Antigüedad: 10 años, 3 meses
Puntos: 11
Respuesta: error de sintaxis ..?

Cita:
http://www.the-lone-warrior49.com/mapa2.php?x=1&y=$y
No notas nada raro en esa direccion? XD

X si tiene un valor asignado.

Y???????

Etiquetas: html, mysql, select, usuarios
Atención: Estás leyendo un tema que no tiene actividad desde hace más de 6 MESES, te recomendamos abrir un Nuevo tema en lugar de responder al actual.
Respuesta




La zona horaria es GMT -6. Ahora son las 06:37.