Jump to content

[QUICK] JavaScript in php if/else


abyssal

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?

 

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.