I'm trying to post varibles to a form on this page, but i'm getting no output.
https://secure.tesco.com/clubcard/clubcard/login.asp
varible names
clubcardnumber
postcode
<?
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "https://secure.tesco.com/clubcard/clubcard/login.asp");
curl_setopt($ch, CURLOPT_HEADER, false);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, array('clubcardnumber' => "12345", 'postcode' => "12345"));
$returned = curl_exec($ch);
curl_close($ch);
echo $returned;
?>