Hi there.
I have a little problem here.
I have a form
<form action=add.php method=post >
<input type="hidden" name="number" value="2" >
<input type="hidden" name="subject" value="some walue" >
<input type=submit value="ok" >
and i want this form to execute without my help, i mean computer shuold take values from db and do the same, as if i write those values.
I tried
<?php
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,"http://my-www/send.php");
and curl and unluckily curl is not installed
fsock didn't work out too...
Maybe anybody have any ideas how to do this?