I dont know much about php. That said, is it possible to update the output of this statement without reloading the page?
echo $_SERVER['HTTP_COOKIE'];
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.
It’s called JavaScript and the answer is yes, you can. However, you cannot do it with PHP or any other server-side scripting. And why? Because it’s executed on the server while you want to present it to the client. Unless you very explicitly tell the webbrowser to poll for new information (usually via JavaScript), it will not talk to the server again until the user either reloads or opens a new page.