robert_gsfame Posted September 15, 2009 Share Posted September 15, 2009 how to create a confirmation when link is clicked by user in php script in html, it works when i put this <a href="#" onclick="return confirm('Are you sure?')">link</a> but when i put it into my php script, it didn't run <?php echo "<a href='#' onclick='return confirm(Are you sure?)'>link</a>";?> can help me with this one Link to comment https://forums.phpfreaks.com/topic/174322-solved-return-confirm-problem/ Share on other sites More sharing options...
thebadbad Posted September 15, 2009 Share Posted September 15, 2009 Pay attention to the quotes: <?php echo '<a href="#" onclick="return confirm(\'Are you sure?\')">link</a>'; ?> I simply surrounded the HTML with single quotes, and escaped the single quotes within it. Link to comment https://forums.phpfreaks.com/topic/174322-solved-return-confirm-problem/#findComment-918920 Share on other sites More sharing options...
HoTDaWg Posted September 15, 2009 Share Posted September 15, 2009 dont you have to put in the: <script language="javascript"> ... </script> thing in your echo statement? like: <script language="javascript"><a href="#" onclick="return confirm('Are you sure?')">link</a></script> i dont know javascript, but thats just my assumption Link to comment https://forums.phpfreaks.com/topic/174322-solved-return-confirm-problem/#findComment-918922 Share on other sites More sharing options...
thebadbad Posted September 15, 2009 Share Posted September 15, 2009 No, the value of the onclick attribute is run as javascript. And just so you know, <script language="javascript"> is deprecated in favor of <script type="text/javascript"> Link to comment https://forums.phpfreaks.com/topic/174322-solved-return-confirm-problem/#findComment-918926 Share on other sites More sharing options...
robert_gsfame Posted September 16, 2009 Author Share Posted September 16, 2009 BRILLIANT Thebadbad!!! it runs !!! THX A LOT !!! Link to comment https://forums.phpfreaks.com/topic/174322-solved-return-confirm-problem/#findComment-919296 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.