Referencing Php In Javascript
I am trying to call a php code which retrieves data from mysql table and populate it to an array and accessing it in the javascript. But screen shows nothing I know for sure there
Solution 1:
Seems you forgot to set include("db.php"); between php opening brackets.
<?phpinclude("db.php");?>
should do the trick
Post a Comment for "Referencing Php In Javascript"