cUrl posant problème

cUrl posant problème - PHP - Programmation

Marsh Posté le 05-12-2010 à 14:11:10    

Bonjour à tous
 
Je réalise un site pour ma classe et je voudrais utiliser cUrl pour récupérer certaines de leurs infos (avec leur permission) sur https://www.viescolaire.com
 
Cependant, je rencontre un problème :  
 
La page où je travaille est là :http://95.211.0.71/~debrid/vs/about.php
L'erreur

Spoiler :

Vie Scolaire
 
Une erreur est survenue
Merci de réessayer dans quelques instants.


 
Le code ma page est :
 

Spoiler :

session_start();
   
   $postfields = array();
   $postfields["Login_new1:TextBox1"] = "demo";
   $postfields["Login_new1:TextBox2"] = "prof";
   $postfields["Login_new1:ButtonValider:TextBox2"] = "Se connecter";
   //$postfields["_VIEWSTAT"] = "dDwtMTk4MDg0MjMzOTs7PuexXRdapeLp+co7aRmv9iz1jS37";
   $postfields["action"] = "javascript:Page_ClientValidate();";
   
   
   $url = 'https://www.viescolaire.net/accueil_0.aspx';
   $useragent = "Mozilla/5.0";
   
   $ch = curl_init($url);
   curl_setopt($ch, CURLOPT_POST, 1);
   curl_setopt($ch, CURLOPT_POSTFIELDS, $postfields);
   curl_setopt($ch, CURLOPT_USERAGENT, $useragent);
   curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
   curl_setopt($ch, CURLOPT_FOLLOWLOCATION, TRUE);
   curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
   $result = curl_exec($ch);
   curl_close($ch);
 
   echo $result;


 
Merci d'avance pour votre aide

Reply

Marsh Posté le 05-12-2010 à 14:11:10   

Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed