So I have a PHP file which contains some JS code and I'm trying to pass an array from PHP into JS
<?php
include('autocomplete.js');
?>
<script type="text/javascript">
// any valid JS code can reproduce this issue because the syntax error is on the line above
var people = <?php echo json_encode($people)?>
</script>
I get an "unexpected token '<'" error and the line referenced is always the one with the script tag in it
Not really sure what to try so if anyone can help out that would be great
Thank you
Top comments (4)
I'm going to take a punt, hopefully it does the job, but if not sorry! I'd assume you'd want to wrap you include for
autocomplete.js
in a script tag also? Something like this maybe?This stack overflow question seems to be a similar scenario: stackoverflow.com/questions/367386.... There's probably a lot more wiser nuggets here.
Try to put the include and var into a comment and see what happens next. I'm not even sure if that include line is valid since your referencing a js file instead of php file.
what does the rendered (echoed) code look like?