Verbat Posted February 7, 2008 Share Posted February 7, 2008 I want to use this script in my PHP code - <INPUT class=Buttons onclick="if(confirm(Are you sure?')) window.location.href='http://www.google.com';" type=button value=Repair> Now i cant put it coz it has the " in it and it gives me an error with them of course and i tryed to chaneg the " to ' in this script and then the javascript doesnt work. Is there a way to use " in the PHP script? Link to comment https://forums.phpfreaks.com/topic/89958-solved-javascript-in-php/ Share on other sites More sharing options...
rhodesa Posted February 7, 2008 Share Posted February 7, 2008 So...it should be: <INPUT class="Buttons" onclick="if(confirm('Are you sure?')) window.location.href='http://www.google.com';" type="button" value="Repair"> If you are asking how to put that inside a print statement, it would be like so: print "<INPUT class=\"Buttons\" onclick=\"if(confirm('Are you sure?')) window.location.href='http://www.google.com';\" type=\"button\" value=\"Repair\"> Link to comment https://forums.phpfreaks.com/topic/89958-solved-javascript-in-php/#findComment-461185 Share on other sites More sharing options...
rhodesa Posted February 7, 2008 Share Posted February 7, 2008 Sorry...it won't let me edit what i just posted...missed the close quote and semi-colon should be: print "<INPUT class=\"Buttons\" onclick=\"if(confirm('Are you sure?')) window.location.href='http://www.google.com';\" type=\"button\" value=\"Repair\">"; Link to comment https://forums.phpfreaks.com/topic/89958-solved-javascript-in-php/#findComment-461186 Share on other sites More sharing options...
Verbat Posted February 7, 2008 Author Share Posted February 7, 2008 Thanks alot That was simple Link to comment https://forums.phpfreaks.com/topic/89958-solved-javascript-in-php/#findComment-461198 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.