Is there a PHP version of JavaScript's confirm() function?
If not, what are my other options or how do I make something similar to the confirm()?
|
|
|
|||
|
|
|
|
Using the same answer from the previous post adding some error treatment and safety:
And in your page2.php:
|
||
|
|
|
|
Because PHP is a server-side language (all the PHP code is executed on the server, and the output of the code is sent to the client), you'd have to make an HTML form with OK/Cancel buttons that would submit to your PHP page. Something like this: confirm.php:
page2.php:
|
||||||||
|
