Affiliate AffiliateOrg.php:
<?php
/*
$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
OSC-Affiliate
Contribution based on:
Enterprise Shopping Cart
http://www.enterprisecart.com
Copyright (c) 2004 Enterprise Shopping Cart Software. Portions Copyright (c) 2001-2004 osCommerce: http://www.oscommerce.com
Released under the GNU General Public License
*/
require('includes/application_top.php');
if (isset($HTTP_GET_VARS['action']) && ($HTTP_GET_VARS['action'] == 'process')) {
$affiliate_username = escs_db_prepare_input($HTTP_POST_VARS['affiliate_username']);
$affiliate_password = escs_db_prepare_input($HTTP_POST_VARS['affiliate_password']);
// Check if username exists
$check_affiliate_query = escs_db_query("select affiliate_id, affiliate_firstname, affiliate_password, affiliate_email_address from " . TABLE_AFFILIATE . " where affiliate_email_address = '" . escs_db_input($affiliate_username) . "'");
if (!escs_db_num_rows($check_affiliate_query)) {
$HTTP_GET_VARS['login'] = 'fail';
} else {
$check_affiliate = escs_db_fetch_array($check_affiliate_query);
// Check that password is good
if (!escs_validate_password($affiliate_password, $check_affiliate['affiliate_password'])) {
$HTTP_GET_VARS['login'] = 'fail';
} else {
$affiliate_id = $check_affiliate['affiliate_id'];
escs_session_register('affiliate_id');
$date_now = date('Ymd');
escs_db_query("update " . TABLE_AFFILIATE . " set affiliate_date_of_last_logon = now(), affiliate_number_of_logons = affiliate_number_of_logons + 1 where affiliate_id = '" . $affiliate_id . "'");
escs_redirect(escs_href_link(FILENAME_AFFILIATE_SUMMARY, '', 'SSL'));
}
}
}
require(DIR_WS_LANGUAGES . $language . '/' . FILENAME_AFFILIATE);
$breadcrumb->add(NAVBAR_TITLE, escs_href_link(FILENAME_AFFILIATE, '', 'SSL'));
?>
<!doctype html public "-//W3C//DTD HTML 4.01 Transitional//EN">
<html <?php echo HTML_PARAMS; ?>>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET; ?>">
<title><?php echo TITLE; ?></title>
<base href="<?php echo (($request_type == 'SSL') ? HTTPS_SERVER : HTTP_SERVER) . DIR_WS_CATALOG; ?>">
<link rel="stylesheet" type="text/css" href="stylesheet.css">
</head>
<body marginwidth="0" marginheight="0" topmargin="0" bottommargin="0" leftmargin="0" rightmargin="0">
<!-- header //-->
<?php require(DIR_WS_INCLUDES . 'header.php'); ?>
<!-- header_eof //-->
<!-- body //-->
<table border="0" width="100%" cellspacing="3" cellpadding="3">
<tr>
<td width="<?php echo BOX_WIDTH; ?>" valign="top"><table border="0" width="<?php echo BOX_WIDTH; ?>" cellspacing="0" cellpadding="2">
<!-- left_navigation //-->
<?php require(DIR_WS_INCLUDES . 'column_left.php'); ?>
<!-- left_navigation_eof //-->
</table></td>
<!-- body_text //-->
<td width="100%" valign="top"><table border="0" width="100%" cellspacing="0" cellpadding="0">
<tr>
<td><table border="0" width="100%" cellspacing="0" cellpadding="0">
<tr>
<td class="pageHeading"><?php echo HEADING_TITLE; ?></td>
<td rowspan="2" class="pageHeading" align="right"></td>
</tr>
</table></td>
</tr>
<tr>
<td><?php echo escs_draw_separator('pixel_trans.gif', '100%', '10'); ?></td>
</tr>
<?php
if (isset($HTTP_GET_VARS['login']) && ($HTTP_GET_VARS['login'] == 'fail')) {
$info_message = TEXT_LOGIN_ERROR;
}
if (isset($info_message)) {
?>
<tr>
<td class="smallText"><?php echo $info_message; ?></td>
</tr>
<tr>
<td><?php echo escs_draw_separator('pixel_trans.gif', '100%', '10'); ?></td>
</tr>
<?php
}
?>
<tr>
<td><?php echo escs_draw_form('login', escs_href_link(FILENAME_AFFILIATE, 'action=process', 'SSL')); ?><table border="0" width="100%" cellspacing="0" cellpadding="2">
<tr>
<td class="main" width="50%" valign="top"><b><?php echo HEADING_NEW_AFFILIATE; ?></b></td>
<td class="main" width="50%" valign="top"><b><?php echo HEADING_RETURNING_AFFILIATE; ?></b></td>
</tr>
<tr>
<td width="50%" height="100%" valign="top"><table border="0" width="100%" height="100%" cellspacing="0" cellpadding="1" class="infoBox">
<tr>
<td><table border="0" width="100%" height="100%" cellspacing="0" cellpadding="2" class="infoBoxContents">
<tr>
<td><?php echo escs_draw_separator('pixel_trans.gif', '100%', '10'); ?></td>
</tr>
<tr>
<td class="main" valign="top"><?php echo TEXT_NEW_AFFILIATE . '<br><br>' . TEXT_NEW_AFFILIATE_INTRODUCTION; ?></td>
</tr>
<tr>
<td class="smallText" colspan="2"><?php echo '<a href="' . escs_href_link(FILENAME_AFFILIATE_TERMS, '', 'SSL') . '">' . TEXT_NEW_AFFILIATE_TERMS . '</a>'; ?></td>
</tr>
<tr>
<td><?php echo escs_draw_separator('pixel_trans.gif', '100%', '10'); ?></td>
</tr>
</table></td>
</tr>
</table></td>
<td width="50%" height="100%" valign="top"><table border="0" width="100%" height="100%" cellspacing="0" cellpadding="1" class="infoBox">
<tr>
<td><table border="0" width="100%" height="100%" cellspacing="0" cellpadding="2" class="infoBoxContents">
<tr>
<td colspan="2"><?php echo escs_draw_separator('pixel_trans.gif', '100%', '10'); ?></td>
</tr>
<tr>
<td class="main" colspan="2"><?php echo TEXT_RETURNING_AFFILIATE; ?></td>
</tr>
<tr>
<td colspan="2"><?php echo escs_draw_separator('pixel_trans.gif', '100%', '10'); ?></td>
</tr>
<tr>
<td class="main"><b><?php echo TEXT_AFFILIATE_ID; ?></b></td>
<td class="main"><?php echo escs_draw_input_field('affiliate_username'); ?></td>
</tr>
<tr>
<td class="main"><b><?php echo TEXT_AFFILIATE_PASSWORD; ?></b></td>
<td class="main"><?php echo escs_draw_password_field('affiliate_password'); ?></td>
</tr>
<tr>
<td colspan="2"><?php echo escs_draw_separator('pixel_trans.gif', '100%', '10'); ?></td>
</tr>
<tr>
<td class="smallText" colspan="2"><?php echo '<a href="' . escs_href_link(FILENAME_AFFILIATE_PASSWORD_FORGOTTEN, '', 'SSL') . '">' . TEXT_AFFILIATE_PASSWORD_FORGOTTEN . '</a>'; ?></td>
</tr>
<tr>
<td colspan="2"><?php echo escs_draw_separator('pixel_trans.gif', '100%', '10'); ?></td>
</tr>
</table></td>
</tr>
</table></td>
</tr>
<tr>
<td width="50%" align="right" valign="top"><?php echo '<a href="' . escs_href_link(FILENAME_AFFILIATE_SIGNUP, '', 'SSL') . '">' . escs_image_button('button_continue.gif', IMAGE_BUTTON_CONTINUE) . '</a>'; ?></td>
<td width="50%" align="right" valign="top"><?php echo escs_image_submit('button_login.gif', IMAGE_BUTTON_LOGIN); ?></td>
</tr>
</table></form></td>
</tr>
</table></td>
<!-- body_text_eof //-->
<td width="<?php echo BOX_WIDTH; ?>" valign="top"><table border="0" width="<?php echo BOX_WIDTH; ?>" cellspacing="0" cellpadding="2">
<!-- right_navigation //-->
<?php require(DIR_WS_INCLUDES . 'column_right.php'); ?>
<!-- right_navigation_eof //-->
</table></td>
</tr>
</table>
<!-- body_eof //-->
<!-- footer //-->
<?php require(DIR_WS_INCLUDES . 'footer.php'); ?>
<!-- footer_eof //-->
<br>
</body>
</html>
<?php require(DIR_WS_INCLUDES . 'application_bottom.php'); ?>
Other E Commerce Scripts: