Aca esta el codigo:
Código PHP:
<td width="1%" bgcolor="#00CC00" height="330"> </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"> </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?