How to print log messages in PHP? like Java SOP statements ?
How to print log messages in PHP? like java has System.out.println("Log") while execution Servlet we can print messages in console
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Raja TPosted Jun 2, 2016, 9:40 AM
Activate the browser console with F12, and select "Console" in the menu.
?>
$str = "Beijing";
printf("There are %u million bicycles in %s.",$number,$str);
?>