[PHP] oscommerce - Login -> redirection et message d'accueil
oscommerce - Login -> redirection et message d'accueil [PHP] - PHP - Programmation
Sujets relatifs:
Leave a Replay
Make sure you enter the(*)required information where indicate.HTML code is not allowed
Marsh Posté le 29-03-2007 à 09:39:35
Bonjour,
J'aurais besoin d'un coup de main.
Dans mon header.php ce trouve le code pour se logger sur le site.
La page d'identification (mail + mot de passe) se nomme login.php, la page "mon compte" account.php.
Quelle commande à rajouter pour mettre un message en page d'accueil (une fois loggé) pour dire bienvenue "Mme Sarah Connor" (en récupérant le nom et prénom du loggé).
J'avais pensé a faire une commande du style : "Bonjour<%= $firstname." ".$lastname %> !" (le probleme c'est que ca ne marche pas mais en plus le "bonjour " s'affiche pour tous les visiteurs meme non loggé)
c'est du OScommerce...
Voici une partie du code du header :
<?php
if (!tep_session_is_registered('noaccount')){
if (!tep_session_is_registered('customer_id')) {
echo ' <a href="' . tep_href_link(FILENAME_LOGIN) . '">' . '<img src="images/pixel_trans.gif" border="0" width="175" height="35"></a>';
} else {
echo ' <a href="' . tep_href_link(FILENAME_ACCOUNT) . '">' . '<img src="images/pixel_trans.gif" border="0" width="175" height="35"></a>';
echo ' <a href="' . tep_href_link(FILENAME_LOGOFF) . '">' . '<img src="images/pixel_trans.gif" border="0" width="175" height="35"></a>';
}
}
if (tep_session_is_registered('noaccount')) {
if (!tep_session_is_registered('customer_id')) {
echo ' <a href="' . tep_href_link(FILENAME_LOGOIN, "", "SSL" ) . '">' . '<img src="images/pixel_trans.gif" border="0" width="175" height="35"></a>';
} else {
echo ' <a href="' . tep_href_link(FILENAME_LOGOFF, "", "SSL" ) . '">' . '<img src="images/pixel_trans.gif" border="0" width="175" height="35"></a>';
}
}
?>
</td>
</tr>
<tr>
<td height="35">
<?php echo '<a href="' . tep_href_link(FILENAME_SHOPPING_CART) . '"class="headerNavigation">' . '<img src="images/pixel_trans.gif" alt="Mon panier" border="0" width="175" height="35"></a>'; ?>
</td>
</tr>
<tr>
<td height="35">
<?php echo '<a href="' . tep_href_link(FILENAME_CHECKOUT_SHIPPING, "", "SSL" ) . '"class="headerNavigation">' . '<img src="images/pixel_trans.gif" alt="Commander" border="0" width="175" height="35"></a>'; ?>
et voici la page login.php
<?php
require('includes/application_top.php');
// redirect the customer to a friendly cookie-must-be-enabled page if cookies are disabled (or the session has not started)
if ($session_started == false) {
tep_redirect(tep_href_link(FILENAME_COOKIE_USAGE));
}
require(DIR_WS_LANGUAGES . $language . '/' . FILENAME_LOGIN);
$error = false;
if (isset($HTTP_GET_VARS['action']) && ($HTTP_GET_VARS['action'] == 'process')) {
$email_address = tep_db_prepare_input($HTTP_POST_VARS['email_address']);
$password = tep_db_prepare_input($HTTP_POST_VARS['password']);
// Check if email exists
$check_customer_query = tep_db_query("select customers_id, customers_firstname, customers_password, customers_email_address, customers_default_address_id from " . TABLE_CUSTOMERS . " where customers_email_address = '" . tep_db_input($email_address) . "'" );
if (!tep_db_num_rows($check_customer_query)) {
$error = true;
} else {
$check_customer = tep_db_fetch_array($check_customer_query);
// Check that password is good
if (!tep_validate_password($password, $check_customer['customers_password'])) {
$error = true;
} else {
if (SESSION_RECREATE == 'True') {
tep_session_recreate();
}
$check_country_query = tep_db_query("select entry_country_id, entry_zone_id from " . TABLE_ADDRESS_BOOK . " where customers_id = '" . (int)$check_customer['customers_id'] . "' and address_book_id = '" . (int)$check_customer['customers_default_address_id'] . "'" );
$check_country = tep_db_fetch_array($check_country_query);
$customer_id = $check_customer['customers_id'];
$customer_default_address_id = $check_customer['customers_default_address_id'];
$customer_first_name = $check_customer['customers_firstname'];
$customer_country_id = $check_country['entry_country_id'];
$customer_zone_id = $check_country['entry_zone_id'];
tep_session_register('customer_id');
tep_session_register('customer_default_address_id');
tep_session_register('customer_first_name');
tep_session_register('customer_country_id');
tep_session_register('customer_zone_id');
tep_db_query("update " . TABLE_CUSTOMERS_INFO . " set customers_info_date_of_last_logon = now(), customers_info_number_of_logons = customers_info_number_of_logons+1 where customers_info_id = '" . (int)$customer_id . "'" );
// restore cart contents
$cart->restore_contents();
if (sizeof($navigation->snapshot) > 0) {
$origin_href = tep_href_link($navigation->snapshot['page'], tep_array_to_string($navigation->snapshot['get'], array(tep_session_name())), $navigation->snapshot['mode']);
$navigation->clear_snapshot();
tep_redirect($origin_href);
} else {
tep_redirect(tep_href_link(FILENAME_DEFAULT));
}
}
}
}
if ($error == true) {
$messageStack->add('login', TEXT_LOGIN_ERROR);
}
$breadcrumb->add(NAVBAR_TITLE, tep_href_link(FILENAME_LOGIN, '', 'SSL'));
$content = CONTENT_LOGIN;
$javascript = $content . '.js';
require(DIR_WS_TEMPLATES . TEMPLATE_NAME . '/' . TEMPLATENAME_MAIN_PAGE);
require(DIR_WS_INCLUDES . 'application_bottom.php');
?>
Message édité par JeJe371 le 29-03-2007 à 10:55:52