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>"; Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.