I've read lots of thread on here but I am still unable to get a variable passed from PHP to an external JS file and wondered if someone could assist?
In my PHP file I have the following;
<script type="text/javascript">
var pass_this_variable = <?php $company['website']; ?>;
</script>
<script type="text/javascript" src="/js/track.js"></script>
In the JS file I have the following;
document.write('<IFRAME SRC="$company['website']" WIDTH="300" HEIGHT="400"></IFRAME>');
What I am trying to achieve is an IFRAME be opened and populated with what is contained within $company['website']. I know I can just use IFRAME directly in the PHP file, but this isn't what I have been tasked with for my homework. When I do use IFRAME directly in the PHP file it works fine, and if I specify a static URL in the JS file such as http://www.google.com this also works fine.
Can anyone assist? Thanks
EDIT:
Thanks for the answers so far, however I'm still unable to get it working :(
The frame that I have in track.php (or track.js) won't load the url thats specified in $company['website']
, yet if I change it to http://www.google.com its working fine. For some reason the $company['website']
value isn't being passed :(
if you want your external javascript to be dynamic you can make it a php file and give the correct header, example:
track.php
You should fix this line:
var pass_this_variable = <?php echo $company['website']; ?>;
Adding
echo
and it should workCall a PHP file inside the JavaScript source. You can find the tutorial here:
http://www.javascriptkit.com/javatutors/externalphp.shtml.
So your code will be like this:
In the PHP file you can fetch the value through
$_GET
variable and use it in the iframe. Make sure to sanitize the input.PHP file (don't forget echo and quoting):
JS file (use pass_this_variable instead):
The code for your PHP file:
The code for your JavaScript (.js) file to get the PHP file value:
JavaScript provides you the functionality of ajax for the purpose of reading the PHP or text files. Why don't you create the HTML
iframe
inside a PHP file with your variables parsed and then take back the response and "throw" it inside a div.