Dear all,
I am using PHP with mysql and i want to use javascript to show a pop up message when the user tries to delete a record this message says " The data of the record you want to delete is ..........
Are you sure you want to delete it ? " and two options are there of course Yes or No . Are ther any ideas to do it .
Thank you Menrit
PHP is server-side. It can't do anything on the browser.
You'll need to do use Javascript for this.
You could have the submission go to a confirmation page instead.