How do I enter a <? echo "hello"; ?> in a .js file.
This is a jquery app, therefore the js file.
Thanks Jean
|
How do I enter a Thanks Jean |
||||
|
|
You would only be able to do this if the PHP interpreter is configured to run on *.js files, which by default it won't be. Quite honestly, I wouldn't recommend this behavior. What I'd do instead is something like this (This method can be used for CSS files, too.):
js.php
I personally do this for many reason.
|
|||||||||||||||
|
|
You regularly don't use PHP within your JavaScript files. Javascript is a client-side language which is interpreterred in your web browser. PHP is run on the web server. However, if you need to pass data from your PHP-code to your javascript document, you can do something like:
If you do this in your
|
|||
|
|
|
I think is not possible to enter a php in the js file, but: try to create an element div for example or an input ... and then use this functions to get the value of the div tag.
It come from another object form (select .. )
|
||||
|
|
|
Ok guys here is the answer The Q: I want to input a value for a variable into a .js file, php tags are not permitted and the js would throw an error. The A: write a
In the said .js file var value=value_pass; So there is no need to have any of the ob_end_flush. If this is not viable please let me know. Thanks Jean |
|||||||||||
|