I have done some searching arround and found out that it is possible to do, Here is what I'm trying do,
I want the user to be able to login to my site using ourschools websites' login and pass then fetch their grades, schedules, announcements etc.

Any ideas on this?

Ok found this to login and download some stuff but my prob now is that the site uses java script
and all i get is this medellincebu.com/test.php any ideas on how i could get the javascript to work?

this is my current code

<?php
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "http://xxxxxx/");
curl_setopt ($ch, CURLOPT_POST, 1);
curl_setopt ($ch, CURLOPT_POSTFIELDS, "Username=xxxx&Password=xxxx");
curl_setopt ($ch, CURLOPT_COOKIEJAR, "cookie.txt");
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
$login = curl_exec ($ch);
curl_setopt($ch, CURLOPT_URL, "http://xxxxxx/Student/EnrolledSubject");
$members = curl_exec ($ch);
curl_close ($ch);
echo $members;
?>
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.