Is it valid to use both javascript and php in the same html file and still have your code working?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
phpis server-side andjavascriptis client-side. The two do not conflict at all becausephpis used to generated the page which may or may not include javascript. Then once the page is served up to the client (no php is passed to the front end), then the javascript will run on the client side.