Hello everyone,
I am new to the community and plan on becoming a regular member. I am having an error "Parse error: parse error, expecting `T_CATCH' in C:\wamp\www\form\RESTCLIENT.php on line 100" which is related to this if else statement I am working on. Right now I am just looking for it to compare the password entered on the login form, to the one I am scraping from our secure billing system. If anyone wouldn't mind helping me out I would greatly appreciate it. Chao!:eek:
if ($pwerd === $parsed)
{
print("Passwords Match");
if(strstr($findactive, 'ACTIVE'))
{
print("<br>DATA RETURNED FROM API CALL :");
print("<br>" . $userid . " : " . $parsed . " : active : " . $plannum . " <br><br>");
}
else
{
print("<br> " . $userid . " IS INACTIVE<br><br>");
}
}
}
else
{
print("Please press back and check your password!");
}