Re: [PHP] Create Popup Window using PHP

2003-10-23 Thread Marek Kilimajer
I use something like:

function myconfirm(str, href) {
if(!confirm(str)) {
return false;
} else {
document.location.href=href + "&confirm=1";
}
}

In delete.php check for $_GET['confirm'], if set, delete, if not,

Re: [PHP] Create Popup Window using PHP

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 Windo

[PHP] Create Popup Window using PHP

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 fo