I have a very simple php script:
<?
$received:file = $_POST['file'];
// do something with it
?>
I am trying to publish the contents of a local file (unix) using wget.
wget --post-data='operation=upload' --post-file myfile
it seems to be sent, but not attached to any "field".
How can i do this?
Disco source
share