PHP Debug Tools


Usage Examples (via curl)

# Simple GET request
curl "https://pong.dfunaro.test.akamita.net/request_inspector.php?foo=bar&test=123"

# POST form data
curl -X POST -d "name=Alice&age=25" https://pong.dfunaro.test.akamita.net/request_inspector.php

# JSON body
curl -X POST -H "Content-Type: application/json" \
     -d '{"user":"Bob","role":"admin"}' \
     https://pong.dfunaro.test.akamita.net/request_inspector.php

# Upload file
curl -F "file=@/path/to/file.txt" https://pong.dfunaro.test.akamita.net/request_inspector.php