Bonjour à tous
Voici mon code php
Code :
- include("includes/dbconnected.php" );
- $config = mysql_query("SELECT * FROM $TABLE_CONFIG" );
- $data = mysql_fetch_array($config);
- if((!isset($_COOKIE['admin_pseudo'])) OR ($_COOKIE['admin_pseudo'] == '') OR (!isset($_COOKIE['admin_password'])) OR ($_COOKIE['admin_password'] == ''))
- {
- if ((isset($_POST['sign'])) && ($_POST['sign'] == 'in'))
- {
- if ((isset($_POST['admin_pseudo']) && !empty($_POST['admin_pseudo'])) && (isset($_POST['admin_password']) && !empty($_POST['admin_password'])))
- {
- $sql = mysql_query('SELECT * FROM '.$TABLE_USERS.' WHERE pseudo="'.addslashes($_POST['admin_pseudo']).'" AND password="'.md5(addslashes($_POST['admin_password'])).'"');
- $nb = mysql_num_rows($sql);
- if ($nb == 1)
- {
- setcookie('admin_pseudo',$_POST['admin_pseudo'],time()+3600*24*30);
- setcookie('admin_password',md5($_POST['admin_password']),time()+3600*24*30);
- $lg = mysql_fetch_array($sql);
- $_SESSION['lg'] = $lg['lang'];
- $sql2 = mysql_query('UPDATE '.$TABLE_USERS.' SET last_session="'.$date.'" WHERE pseudo = "'.$_POST['admin_pseudo'].'"') or die('Erreur SQL !<br />'.$sql2.'<br />'.mysql_error());
- $_SESSION['message'] = '<center><font color="green">'.$tx['ADMIN_sign_in_ok'].'</font></center>';
- //$_SESSION['message'] '<meta http-equiv="Refresh" content="2;URL=index.php">';
- }
- else
- {
- $_SESSION['message'] = '<center><font color="red">'.$tx['ADMIN_error'].'</font></center>';
- }
-
- }
- else
- {
- $_SESSION['message'] = '<center><font color="red">'.$tx['ADMIN_error_empty'].'</font></center>';
- }
- }
- }
|
J'ai une erreur du type
Code :
- Warning: Cannot modify header information - headers already sent by (output started at /home/gs1433/domains/phpmysiteweb.com/public_html/widgetlike/index.php:1) in /home/gs1433/domains/phpmysiteweb.com/public_html/widgetlike/index.php on line 20
- Warning: Cannot modify header information - headers already sent by (output started at /home/gs1433/domains/phpmysiteweb.com/public_html/widgetlike/index.php:1) in /home/gs1433/domains/phpmysiteweb.com/public_html/widgetlike/index.php on line 21
|
Cependant, je suis presque sûr que je n'ai demandé l'affichage d'aucun truc côté client. Donc quelque chose cloche. Sur easyphp 3, ça marche sans problème. Sur mon serveur internet, ça plante
Merci d'avance pour vos réponses