I am trying use a javascript function while passing php variables in it. For example:
onclick="alert(<?echo $row['username']?>)";
Now this does not work, instead gives an error-ReferenceError: Can't find variable:right_username
(here the right_username is the answer i expect in the alert).
However if instead of username
i use EmpID
:
onclick="alert(<?echo $row['EmpID']?>)";
EmpID being an int in the database works just fine.