i would like to create a prompt up messsage in when submit a form, how to make it?
how to create a prompt up message to confirmation of submit the form
Collapse
X
-
An alert pop-up message can only be generated by JavaScript. In PHP you'd have to echo or print a message to the screen. Are you looking for a JS alert?
Ronald :cool: -
Originally posted by ronverdonkAn alert pop-up message can only be generated by JavaScript. In PHP you'd have to echo or print a message to the screen. Are you looking for a JS alert?
Ronald :cool:Comment
-
This how you can issue an alert (using JAvaScript) when hitting the 'submit' button:
[HTML] <input type='submit' value='submit' onclick="javasc ript:alert('You r form has been submitted');">[/HTML]
As to your other questionAnother queastion is tat how can i do for the query if i want to insert data in a form, but this form was include two table information?
Ronald :cool:Comment
Comment