Jump to content

Recommended Posts

Does JavScript run ONLY if included in a php if/else statement ?

Here is a quick example: 1 is not higher than 2, so the else statement will run. My question is, will the first javascript1 code run too, or it will follow the if/else statement in php ?

 

if (1>2)

{

<javascript code1>

}

else

{

<javascript code2>

}

Link to comment
https://forums.phpfreaks.com/topic/257526-quick-javascript-in-php-ifelse/
Share on other sites

PHP simply outputs content to the browser. In your case, it would output the JavaScript contained in your else statement. Wether it *runs* or not depends entirely on your JavaScript code.

 

you can redirect in php, so maybe you dont need javascript at all?

 

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.