I am a php noob and I have tried a few things and nothing so far has worked.
I need to find some php code that allows me to do an http post and return the results into an array so I can parse the results for a string.
The problems I have are file get content is not enabled on the server, CURL is not installed on the server and I cant install anything on the server.
I am creating session variables from the form input then passing those variables into a php transaction to post to the site and verify the transaction results.
eg:
<?php
// start the session
session_start();
header("Cache-control: private");
$username = $_POST;
$password = $_POST;
$_SESSION = $username;
$_SESSION = $password;
?>
Next step I need to actually login behind the scenes with the php post and parse the results for the status (This is where I am losing the whole thing I cant seem to get this done)
Any ideas anyone ??