Reputation: 372
I know that I can run wget --post-data=key=value, but is there a way to send $_GET data instead? Such as through get-data?
wget --post-data=key=value
$_GET
get-data
Upvotes: 0
Views: 1092
Reputation: 158060
GET data will be transmitted via the url. Like this:
wget http://your.server.net/?key=value
You can refer to RFC 2616
Upvotes: 1