The problem is that after I log into the page (I thunk I got the cURL stuff right and assume it gets logged in) I need to then have php open pages that arent the result of the login....they are pages that require you to login but are not the 'Thanks for logging in page.." does that make sense?
Heres some of the code I came up with so far....
$URL="www.axiagolf.com/gametrack/login_check.asp";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,"https://$URL");
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, "t_user_name=test&t_password=test&c_save_login=1");curl_exec ($ch);
//curl_close ($ch);
$file = "http://www.axiagolf.com/gametrack/course/course_profile.asp?strCourseID=00001;
the variable $file never gets opened I assume because the site no loger knows that I am logged in....please let me know if I am doing something wrong.
Thanks again,
Kevin