I'm trying to capture data sent by curl using PHP but it doesn't appear on my end.
I'm executing via console:
curl -d "tests_123" "http://www.example.com/capture.php"
and I have in capture.php
print_r($_POST);
print_r($_GET);
print_r($_REQUEST);
But nothing appears.
Am I doing something wrong?