lets say i have an array of urls which all have the same exact form.
is it possible to send post variables and get a response without actually sending it through a form?
for example .. here is some example:
PHP Code:
<?
foreach($urls as $url)
{
$user = sde;
// send vairables to $url via the POST method here
}
?>
if that is not possible .. how could i automate it running through the array of urls and sending to multiple forms.