is it possible to create Element or change attribute or innerHTML of a html element on the webpage like javascript does?
document.createElement("label");
any how is it possible with php..
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.
Remember that PHP is server side processing, and Javascript is Client Side processing.
PHP can directly manipulate HTML(and JavaScript) before it is sent to the client.