I have created a webbot that can login to a website using the post method. I have tested it and works perfectly. But I want to get 1-2 more staff and I cannot figure out how to do it. Here is the code for my webbot, and then the questions I have are listed. If anyone can help me out or guide me to the correct direction on where to look and find out how to do it I will really appreciate it.
<?
# Define target page
$target = "https://testsite.com/index.html";
# Define the login form data
$form_data="P101_USERNAME=test&P101_PASSWORD=test";
# Create the cURL session
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $target);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt($ch, CURLOPT_COOKIEJAR, "cookies.txt");
curl_setopt($ch, CURLOPT_COOKIEFILE, "cookies.txt");
curl_setopt($ch, CURLOPT_POST, TRUE);
curl_setopt($ch, CURLOPT_POSTFIELDS, $form_data);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, TRUE);
# Execute the PHP/CURL session and echo the downloaded page
$page = curl_exec($ch);
echo $page;
# Close the cURL session
curl_close($ch);
?>
What I would like to do as well is:
- Instead of just echo the website, I would like to save the source code of the website in a txt file.
- If the webbot does not login successfully I would like it to notify me that it has failed not by just crushing. Lets say the username and password are wrong, I would like it to echo back FALSE for example, or something like that.
Can anybody help please?
Thanks a lot