FlippMoke Posted April 18, 2006 Share Posted April 18, 2006 I am brand new at PHP and Javascript and I am trying to follow along the tutorial given here:[a href=\"http://www.phpfreaks.com/tutorials/89/0.php\" target=\"_blank\"]http://www.phpfreaks.com/tutorials/89/0.php[/a]However I can not get the detele button to remove information from the database. If I directly link to the $delUrl it works however it fails to do the java popup.Here is the java function:<script language="javascript"> function confirmdelete(delurl) { var msg = "Are you sure you want to Delete this Faction?"; if (confirm(msg)) location.replace(delurl); } </script> .....and here is where it is used:echo "<td><input type=\"button\" value=\"Delete\" onClick=\"confirmdelete('\" .$delUrl. \"');\"></td></tr>"; Link to comment https://forums.phpfreaks.com/topic/7759-confirm-popup/ Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.