Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How to put php inside javascript?

I try (but its not working):

<?php  
$htmlString= 'testing';
 ?>
<html>
  <body>
    <script type="text/javascript">  
      var htmlString=<?php echo $htmlString; ?>;
      alert(htmlString);
    </script>
  </body>
</html>

tutorial that I use for that parpose: http://web-design.lovetoknow.com/Define_PHP_Variables_Inside_Javascript

Thanks

share|improve this question

3 Answers

up vote 5 down vote accepted

Try this:

<?php $htmlString= 'testing'; ?>
<html>
  <body>
    <script type="text/javascript">  
      // notice the quotes around the ?php tag         
      var htmlString="<?php echo $htmlString; ?>";
      alert(htmlString);
    </script>
  </body>
</html>

When you run into problems like this one, a good idea is to check your browser for JavaScript errors. Different browsers have different ways of showing this, but look for a javascript console or something like that. Also, check the source of your page as viewed by the browser.

Sometimes beginners are confused about the quotes in the string: In the PHP part, you assigned 'testing' to $htmlString. This puts a string value inside that variable, but the value does not have the quotes in it: They are just for the interpreter, so he knows: oh, now comes a string literal.

share|improve this answer

You're missing quotes around your string:

...
var htmlString="<?php echo $htmlString; ?>";
...
share|improve this answer

you need quotes around the string in javascript

var htmlString="<?php echo $htmlString; ?>";
share|improve this answer
1  
Beaten by a minute :] – Anraiki Jul 27 '10 at 16:24

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.