Ver Mensaje Individual
  #5 (permalink)  
Antiguo 23/04/2009, 10:21
Avatar de TonyChile
TonyChile
 
Fecha de Ingreso: marzo-2009
Ubicación: Maipú, Santiago
Mensajes: 422
Antigüedad: 15 años, 9 meses
Puntos: 7
Respuesta: boton enviar boton previsualizar

En el <script> no tiene (function)

Código php:
Ver original
  1. <script type="text/javascript">
  2. <!--//
  3. function enviar(i) {  //Aca falto el FUNCTION ahi sta
  4. if (i == 1)
  5.     document.form.action="temas.php";
  6. else
  7.     document.form.action="add_enviar_temas_script.php";
  8.     document.form.submit();
  9. }
  10. //-->
  11. </script>

y en el boton

<input type="image" name="imageField" onclick="enviar(i);" src="../img/boton_enviar.png" /> Prueba con (i)

<input type="image" name="imageField2" onclick="enviar(i);" src="../img/vista_previa.png" /> Te habia faltado(>)