I use the 'alert' command in javascript's to check values of variables so as to debug my code. but i cant find any such command in PHP which shows a simple popup box like the alert command. im new to PHP.
is there something i dont know?
Ex:
$username=$_REQUEST["username"];
$password=$_REQUEST["password"];
Here i just want to find out what values are coming in those variables. if it was javascript, i would simply use alert (username) and alert (password). how to do it in php? thank you.