Jump to content

[SOLVED] Can you enter username and Password from a PHP script?


wtfsmd

Recommended Posts

hey guys i am developing a XML parser for my website, the problem i am having is i need to enter in a username and password to gain access to the pages. Is there a way using php to enter in my login information in a script so it can gain access to these pages to parse?

<?php

file_get_contents("http://www.com/page.php");

?>

 

page.php

<?php redarrow redarrow ?>

 

script.php

 

<?php
$data=file_get_contents("http://www.com/page.php");

$data=explode(' ',$data);

$username=$data[0]; //username for access.
$password=$data[1];// password for access.

?>

 

 

 

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.