Ver Mensaje Individual
  #4 (permalink)  
Antiguo 23/07/2004, 09:59
eltitix
 
Fecha de Ingreso: julio-2004
Mensajes: 3
Antigüedad: 20 años, 5 meses
Puntos: 0
Aca esta el codigo:



Código PHP:
    <td width="1%" bgcolor="#00CC00" height="330">&nbsp;</td>
    <td width="99%" height="330">
    <p align="center">Envía un mensaje para que todos los visitantes del sitio 
    lo vean!<br>
    Es un tablón con tu onda! No lo utilices como Chat, para eso ya tenemos uno! 
    pero puedes publicar alguna fiesta que harás y quieres que vaya mucha 
    gente, y muchas cosas mas!</p>
    <p align="center">&nbsp;</p>
    <p align="center">          <?php
print "<table width='75%' border='0' cellspacing='0'>
  <form method='post' action='recibe.php' onsubmit='return error ()' name='myform' >
    <tr> 
      <td width='16%'>Nombre o Nick</td>
      <td width='84%'><input name=titulo type=text id='titulo' maxlenght=10> </td>
    </tr>
    <tr> 
      <td height='23'>Texto</td>
      <td>
        <input name=url type=text id=url2 maxlenght=200></td>
    <tr> 
      <td height='23'><input name='submit' type=submit value=Enviar></td>
      <td></td>
    </tr>
    <script>
                        function error (){
                                if (document.myform.titulo.value == '') {
                                        alert('Por favor, introduzca el nombre o nick');
                                        document.myform.titulo.focus();
                                        return false}
                                if (document.myform.url.value == '') {
                                        alert('Por favor, introduzca el texto.');
                                        document.myform.url.focus();
                                        return false}
                                if (document.myform.descripcion.value == '') {
                                        alert('Por favor, introduzca la descripcion.');
                                        document.myform.descripcion.focus();
                                        return false}
                                

                                else return getPermission();
                        }

</script>
  </form>
</table>"
;
?></td>
  </tr>
</table>
Lo que quiero hacer es que no hagan dos clic en el boton, ya que si hacen dos clics, envia dos veces el texto.. se entiende?