Hello,
is there any php function to create a Message Box like the following javascript function does?
Of course I want that the value of the click will be returned into a php $variable. Like the 'LogOut' menu in this Forum does.
Thanks in advance.
is there any php function to create a Message Box like the following javascript function does?
Code:
if(confirm('Are you sure you want to delete tihs record?')) { document.write('OK'); } else { document.write('NOOO!'); }
Thanks in advance.
Comment