Ver Mensaje Individual
  #5 (permalink)  
Antiguo 21/07/2010, 22:51
Seba_sxe
 
Fecha de Ingreso: julio-2008
Mensajes: 43
Antigüedad: 16 años, 4 meses
Puntos: 0
Respuesta: Ayuda en Tagboard

Ahí esta (Se ve) pero alparecer esta independiente, y no es parte de los otros campos...

Es decir no esta bien conectado.

Código PHP:
Ver original
  1. ...
  2.  
  3.                 </div><?php
  4.  
  5.             }
  6.  
  7.             ?><div id="msgContainer"><?php
  8.  
  9.             $msj->PrintMessages($messages);
  10.  
  11.             ?></div>
  12.  
  13.       </div>
  14.  
  15.     </td>
  16.  
  17.   </tr>
  18.  
  19.   <tr>
  20.  
  21.     <td align="right" valign="middle">
  22.  
  23.       <form name="form1" method="post" action="mensajeitor.php">
  24.         <table border="0" cellspacing="0" cellpadding="0">
  25.  
  26.           <tr>
  27.  
  28.             <td>  
  29.  
  30.                 <table border="0" cellspacing="0" cellpadding="0">
  31.  
  32.                     <tr valign="middle">
  33.  
  34.                         <td valign="middle">
  35.  
  36.                             <input type="text" id="nick" name="nick" size="20" value="<?php echo htmlspecialchars($params['nick']); ?>" class="formInput" onFocus="focus_hndl(this,'<?php echo addslashes($params['nick']); ?>');" onBlur="blur_hndl(this,'<?php echo addslashes($params['nick']); ?>');" maxlength="<?php echo $msj->cfg['Nick']['MaxChars']; ?>" /><?php if($msj->cfg['Msgs']['Smileys']) { ?><?php } ?></td>
  37.                     </tr>
  38.  
  39.                     <tr valign="middle">
  40.  
  41.                        
  42.  
  43.                   <td align="left" valign="middle"><p>
  44.                     <textarea name="message" cols="21" rows="5" class="formInput" id="message" onFocus="focus_hndl(this,'<?php echo addslashes($params['message']); ?>');" onBlur="blur_hndl(this,'<?php echo addslashes($params['message']); ?>');"><?php echo htmlspecialchars($params['message']); ?></textarea>
  45.                     <br /><input type="text" name="url" size="21" value="http://" class="formInput" onFocus="focus_hndl(this,'http://');" onBlur="blur_hndl(this,'No link');" /><br/>
  46.                     [B]<?php
  47.  
  48. if($_SESSION['pregregex'] AND $_GET['respuesta'])
  49. {
  50.     if(eregi($_SESSION['pregregex'],$_GET['respuesta']))
  51.     echo "De acuerdo, no eres un robot...";
  52.     else
  53.     echo "Solo Bender puede superarte a robot !";
  54.     unset($_SESSION['pregregex']);
  55.     echo "<a href=\"anti-bot.php\">Vuelve a probarlo</a>";
  56. }
  57. else
  58. {
  59.     $preguntas = array();
  60.     $preguntas[] = array('Cuantos dedos tiene una mano?','(5|cinco)');
  61.     $preguntas[] = array('Resultado de sumar 2 y 4?','(6|seis)');
  62.     $preguntas[] = array('Cuantas ruedas tiene un coche?','(4|cuatro)');
  63.     $preguntas[] = array('Que animal es mas grande: elefante o caracol?','(primero|elefante)');
  64.     $preguntas[] = array('Cual es el color mas oscuro de todos?','negro');
  65.     $preguntas[] = array('Por favor, contesta: eres humano?','(si|claro)');
  66.     $preguntas[] = array('Con que mano escribe un zurdo?','(izquierda)');
  67.     $preguntas[] = array('Escribe pan dos veces.','^pan ?pan$');
  68.  
  69.     $pregn = rand(0,count($preguntas));
  70.     $_SESSION['pregregex'] = $preguntas[$pregn][1];
  71.     echo '<form method ="POST" action=""></p>'.$preguntas[$pregn][0].'</p><br><input type="text" class="formInput" name="respuesta"></form>';
  72. }
  73. ;
  74. ?>[/B]<br/>
  75.                     <br/><br/>
  76.                   </p></td>
  77.                   </tr>
  78.  
  79.                     <tr>
  80.  
  81.                       <td align="right"><input type="text" id="pass" name="pass" value="Password" disabled="disabled" class="formInput" onFocus="focus_hndl(this,'');" />
  82.                       <input type="submit" value="Enviar" /></td>
  83.  
  84.                     </tr>
  85.               </table>
  86.  
  87.            
  88.  
  89.             </td>
  90.  
  91.           </tr>
  92.  
  93.         </table>
  94.  
  95.         <input type="hidden" name="adminnicks" id="adminnicks" value="<?php
  96.  
  97.             $output = array();
  98.  
  99.             foreach($msj->cfg['Nick']['Admins'] as $key => $value) {
  100.  
  101.                 $output[] = $key;
  102.  
  103.             }
  104.  
  105.             echo implode(',',$output);
  106.  
  107.          ?>" />
  108.  
  109.       </form>
  110.  
  111.     </td>
  112.     <td align="center" valign="top"><img src="http://www.forosdelweb.com/f18/images/pumaboard.gif" /></td>
  113.  
  114.   </tr>
  115.  
  116.   <?php if($msj->cfg['Main']['ShowVersion'] || $msj->cfg['Main']['ShowLink']) { ?>
  117.  
  118.   <tr>
  119.  
  120.     <td colspan="2" class="info"><?php if($msj->cfg['Main']['ShowLink']) { ?>
  121.  
  122.     <div>MENSAJEITOR</div>
  123.  
  124.     <?php } ?>
  125.  
  126.     <?php if($msj->cfg['Main']['ShowVersion']) { ?>
  127.  
  128.     <div>1.0</div><?php } ?></td>
  129.  
  130.   </tr>
  131.  
  132.   <?php } ?>
  133.  
  134. </table>
  135.  
  136. </body>
  137.  
  138. </html>

Saludos y gracias.

Última edición por Seba_sxe; 21/07/2010 a las 23:25