Suppose I have 2 pages: index.php and service.php
index.php sends an http message to service.php containing the datestamp once every 5 minutes.
How to debug post variables on service.php? Obviously i can't just do
if(isset($_POST['key'])) {
var_dump($_POST['key']);
}
as it does not exist when I enter the page.
In ASP.NET, I would just create a breakpoint, but how would I check the published data in php?
thank
Johan source
share