[PHP] Create Popup Window using PHP

2003-10-23 Thread irinchiang
Hi all, I have a Delete function here whereby when I click on Delete it will actually have some kinda popup window to prompt user whether they are sure to delete the following data.So, anyone have any idea how to create this popup window using PHP?? Appreciate very much for any

Re: [PHP] Create Popup Window using PHP

2003-10-23 Thread Brad Bonkoski
Impossible, PHP is server side, look into javascript of some other client side language to create pop-up windows. - Original Message - From: [EMAIL PROTECTED] To: php [EMAIL PROTECTED] Sent: Thursday, October 23, 2003 3:00 AM Subject: [PHP] Create Popup Window using PHP Hi all

Re: [PHP] Create Popup Window using PHP

2003-10-23 Thread Marek Kilimajer
I use something like: a href=delete.php?id=123 onclick=return myconfirm('Do you ... ?',this.href) script function myconfirm(str, href) { if(!confirm(str)) { return false; } else { document.location.href=href + confirm=1; } } /script In delete.php check for