Jump to content

[SOLVED] Javascript in PHP


Verbat

Recommended Posts

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

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\">

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\">";

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.