| Server IP : 10.200.247.200 / Your IP : 216.73.217.19 Web Server : Apache System : Linux synergy-usa-sites 6.8.0-138-generic #138-Ubuntu SMP PREEMPT_DYNAMIC Fri Jul 31 22:41:49 UTC 2026 x86_64 User : jeremy ( 1001) PHP Version : 8.4.25 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/usa_sites/pcisecureform.com/lcapi/ |
Upload File : |
<?
require_once("{$_SERVER["DOCUMENT_ROOT"]}/lcapi/inc/common.php");
$aff_id = htmlspecialchars($_GET['aff_id']);
$email = htmlspecialchars($_GET['email']);
if (strcmp($email,"")==0)
{
echo "Failure: no email passed";
exit();
}
if (strcmp($aff_id,"")==0)
{
echo "Failure: no affiliate id passed";
exit();
}
$dbh = db_connect($aff_id);
$selectsql = sprintf(" SELECT
password
FROM
lc_reseller
WHERE
email='%s'
LIMIT 1;",
$db->clean($email)
);
$result = $db->query($selectsql);
$row = $result[0];
$userpassword = $row['password'];
if (strcmp($userpassword,"")==0)
{
echo "Failure";
exit;
}
else
{
$message = "Hello!
Thank you for your recent membership to USA Grant Applications.org.
Your login information is:
Website: http://www.usagrantapplications.org/login.php
Username: $email
Password: $userpassword
If you have any questions, please don't hesitate to let us know.
Our email is: support@usagrantapplications.org. Or you can visit our support page in the Members Only site by clicking on the support tab, www.usagrantapplications.org/membersonly/contact.php
Again, thank you for your order and good luck to you in your funding goals!!
Sincerely,
USA Grant Applications
www.USAGrantApplications.org";
$from = "From: support@usagrantapplications.org\r\nBcc: login@nowstream.com\r\n";
//mail($email,"USA Grant Applications.org Membership Information",$message,$from);
echo "Success:$userpassword";
exit;
}
?>