Jump to content

problem in php form


s4salman

Recommended Posts

are you using FireFox browser?

 

If not get it, it is the best for trouble shooting Javascript. Once you have it going and load up your form, check the Tools menu and select

Error Console, this will tell you if you have any Javascript errors,

 

Since you form is dependent on JS to return True, if there is a JS error then the the submit is failing,

 

Note: IE will tell you in lower left corner if there is a JS error

 

 

Link to comment
https://forums.phpfreaks.com/topic/78773-problem-in-php-form/#findComment-398646
Share on other sites

i also checked it in internet explorer.no error message at all.form is located here :

 

http://fun007.com/jokes/form-jokes.php

 

 

As has been pointed out, try changing this line:

<form action="process-jokes.php" method="POST" onsubmit="return submitForm();">

to this

<form action="process-jokes.php" method="POST" onsubmit="submitForm();">

or to this

<form action="process-jokes.php" method="POST">.

 

 

nothing happen.same issue.

 

i m using this rich text editor:

 

http://www.dynamicdrive.com/dynamicindex16/richtexteditor/index.htm

 

Link to comment
https://forums.phpfreaks.com/topic/78773-problem-in-php-form/#findComment-398647
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.