ngubie Posted September 29, 2006 Share Posted September 29, 2006 Hi,I'm trying to implement a popup warning similar to when a file exists in windows. When you copy a file into the a folder with another file of the same name, a popup appears asking if you are sure you want to overwrite the file.is there anyway to do that in php? or is there a similar alternative out there?Thanks Link to comment https://forums.phpfreaks.com/topic/22514-how-do-you-implement-php-popup-warning/ Share on other sites More sharing options...
counterbeing Posted September 29, 2006 Share Posted September 29, 2006 Let me preface this by saying: I know very little.I do think what you're describing is possible by using mostly javascript. Here is a site that details using alerts with cancel button.[url=http://www.jsmadeeasy.com/javascripts/Alert%20Scripts/confirm%20cancel%20new%20window/index.htm]http://www.jsmadeeasy.com/javascripts/Alert%20Scripts/confirm%20cancel%20new%20window/index.htm[/url] Link to comment https://forums.phpfreaks.com/topic/22514-how-do-you-implement-php-popup-warning/#findComment-101117 Share on other sites More sharing options...
RyanSmith345 Posted September 29, 2006 Share Posted September 29, 2006 Ya, your looking for JavaScript:if(confirm('Are you sure you want to do this?')) { document.getElementById('myForm').submit();}Looks like it won't let me insert the script around this, but you get the jist Link to comment https://forums.phpfreaks.com/topic/22514-how-do-you-implement-php-popup-warning/#findComment-101123 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.