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

Link to comment
Share on other sites

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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.