I have the following query, now how do i display the output in a <p> tag
SELECT COUNT( question_status) AS active_questions
FROM questions_table
WHERE question_status = "Active"
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.
Going back to complete basics:
This is by no means exacting, it doesn’t use any external (or valuable libraries, such as PDO), but should give you an idea of how to simplistically implement and render a result set.
You should explore/read-up on mysqli/PDO and others for further functionality/utility in time.