Notice: Undefined variable: q in /public_html/links/conf/cfg.inc.php on line 106
Notice: Undefined variable: q in /public_html/links/conf/cfg.inc.php on line 107
Notice: Undefined variable: q in /public_html/links/conf/cfg.inc.php on line 108
Notice: Undefined variable: q in /public_html/links/conf/cfg.inc.php on line 110
Notice: Undefined variable: q in /public_html/links/conf/cfg.inc.php on line 112
Notice: Undefined variable: q in /public_html/links/conf/cfg.inc.php on line 112
Notice: Undefined variable: q in /public_html/links/conf/cfg.inc.php on line 114
Notice: Undefined variable: q in /public_html/links/conf/cfg.inc.php on line 115
Notice: Undefined variable: q in /public_html/links/conf/cfg.inc.php on line 116
Notice: Undefined variable: q in /public_html/links/conf/cfg.inc.php on line 117
Notice: Undefined variable: q in /public_html/links/conf/cfg.inc.php on line 118
Notice: Undefined variable: q in /public_html/links/conf/cfg.inc.php on line 120
Notice: Undefined variable: q in /public_html/links/conf/cfg.inc.php on line 121
// ----------------------------------------------------------------------------
// MyPHPSoft Library - Class Abstract MySQL
// ----------------------------------------------------------------------------
/**
* Use :
* include ("class_mysql.php");
* $dbs = new data(0,$Hote, $Base, $User, $Pass);
* if(!$dbs->connect())
* die($dbs->error);
* if(!$dbs->query("Your_Query_SQL"))
* die($dbs->error);
* $RecordSet = $dbs->numrows();
* while($dbs->nextrecord()){
* echo $dbs->value("NameChp");
* }
**/
class data{
var $hostname = "";
var $database = "";
var $login = "";
var $password = "";
var $idresult = 0;
var $idconnect = 0;
var $error = "";
var $record = array();
var $row = 0;
var $memfree = 0;
/**
* Constructor
*
* @param $memfree int
* @param $hostname string
* @param $database string
* @param $login string
* @param $password string
*
* @access public
*/
function data($memfree,$hostname,$database,$login,$password){
$this->memfree = $memfree;
$this->hostname = $hostname;
$this->database = $database;
$this->login = $login;
$this->password = $password;
}
/**
* Connect
*
* @return bool
*
* @access public
*/
function connect(){
if(($this->idconnect = @mysql_connect($this->hostname, $this->login, $this->password)) == false){
$this->error = "Impossible de creer une connexion persistante !";
return(0);
}
if(@mysql_select_db($this->database, $this->idconnect) == false){
$this->error = "Impossible de selectionner la base !";
return(0);
}
return($this->idconnect);
}
/**
* Deconnect
*
* @access public
*/
function disconnect(){
$this->mysql_close;
}
/**
* Free men
*
* @access private
*/
function free(){
if(@mysql_free_result($this->idresult) == false)
$this->error = "Erreur lors de la tentative de liberation de memoire";
$this->idresult = 0;
}
/**
* Exécute query
*
* @access public
*/
function query($query = ""){
$rtval = 0;
if($this->idconnect != 0){
if($this->idresult != 0){
if($this->memfree == 1)
$this->free();
}
if(($this->idresult = mysql_query($query, $this->idconnect)) == false)
$this->error = "Impossible de lancer la requete :
$query";
else{
$rtval = $this->idresult;
$this->row = 0;
}
}else
$this->error = "Impossible de lancer une requete, il n'existe pas de connexion !";
return($rtval);
}
/**
* Result to record
*
* @access private
*/
function affecresult(){
$this->record = @mysql_fetch_array($this->idresult);
}
/**
* Move cursor (+1)
*
* @access public
*/
function nextrecord(){
$rtval = 0;
if($this->idresult != -1){
$this->affecresult();
$this->row = $this->row + 1;
$stat = is_array($this->record);
if(!$stat && $this->memfree)
$this->free();
if($stat)
$rtval = 1;
}else
$this->error = "Impossible d'avancer le resultat, pas d'id !";
return($rtval);
}
/**
* Move cursor to
*
* @param $row int
*
* @access public
*/
function seekrecord($row){
$this->row = $row;
return(@mysql_data_seek($this->idresult,$row));
}
/**
* Number of lines (record)
*
* @return int
*
* @access public
*/
function numrows(){
return(@mysql_num_rows($this->idresult));
}
/**
* Value of field
*
* @param $col string
*
* @return string
*
* @access public
*/
function value($col){
return($this->record[$col]);
}
/**
* Result
*
* @return array
*
* @access public
*/
function result(){
return($this->record);
}
/**
* Get name tables from database
*
* @return array
*
* @access public
*/
function gettables(){
if(!$this->query("SHOW TABLES FROM ".$this->database))
die($this->error);
$i=0;
if($this->numrows()<>0){
while($this->nextrecord()){
$tables[$i++] = $this->value("Tables_in_".$this->database);
}
}
return $tables;
}
/**
* Get fields of table
*
* @param $tablename string
*
* @return array
*
* @access public
*/
function getfieldstable($tablename){
if(!$this->query("SHOW FIELDS FROM ".$tablename))
die($this->error);
$i=0;
if($this->numrows()<>0){
while($this->nextrecord()){
$fields[$i++] = array('Field'=>$this->value("Field"),
'Type'=>$this->value("Type"),
'Null'=>$this->value("Null"),
'Key'=>$this->value("Key"),
'Default'=>$this->value("Default"),
'Extra'=>$this->value("Extra"));
}
}
return $fields;
}
/**
* Get keys of table
*
* @param $tablename string
*
* @return array
*
* @access public
*/
function getkeystable($tablename){
if(!$this->query("SHOW KEYS FROM ".$tablename))
die($this->error);
$i=0;
if($this->numrows()<>0){
while($this->nextrecord()){
$keys[$i++] = array('Table'=>$this->value("Table"),
'Non_unique'=>$this->value("Non_unique"),
'Key_name'=>$this->value("Key_name"),
'Seq_in_index'=>$this->value("Seq_in_index"),
'Column_name'=>$this->value("Column_name"),
'Collation'=>$this->value("Collation"),
'Cardinality'=>$this->value("Cardinality"),
'Sub_part'=>$this->value("Sub_part"),
'Packed'=>$this->value("Packed"),
'Comment'=>$this->value("Comment"));
}
}
return $keys;
}
/**
* Get struct table
*
* @param $tablename string
*
* @return string
*
* @access public
*/
function getstructable($tablename){
$create .= "CREATE TABLE " .$tablename ."(\n";
//Fields
$flieds = $this->getfieldstable($tablename);
for($j=0;$jgetkeystable($tablename);
for($k=0;$k1){
$index[$key_name][] = $column_name . "(" . $sub_part . ")";
}else{
$index[$key_name][] = $column_name;
}
}
while(list($x, $columns)=@each($index)){
$create .= ",\n";
if($x=="PRIMARY"){
$create .= "PRIMARY KEY (";
}elseif(substr($x, 0, 6)=="UNIQUE"){
$create .= "UNIQUE " . substr($x, 7) . " (";
}elseif(substr($x, 0, 8) == "FULLTEXT") {
$create .= "FULLTEXT " . substr($x, 9) . " (";
}else{
$create .= "KEY " . $x . " (";
}
$create .= implode($columns, ', ') . ")";
}
$create .= ");\n\n";
return $create;
}
/**
* Get content table
*
* @param $tablename string
*
* @return string
*
* @access public
*/
function getcontenttable($tablename,$clausequery=""){
if(!$this->query("SELECT * FROM ".$tablename." ".$clausequery))
die($this->error);
$fields_cnt = mysql_num_fields($this->idresult);
if($this->numrows()<>0){
while($this->nextrecord()){
$row = $this->result();
$fields_list = "(";
for($i=0;$i<$fields_cnt;$i++){
$fields_list .= mysql_field_name($this->idresult, $i) . ", ";
}
$fields_list = substr($fields_list, 0, -2);
$fields_list .= ")";
$insert .= "INSERT INTO ".$tablename." ".$fields_list." VALUES (";
for($i=0;$i<$fields_cnt;$i++){
if(!isset($row[$i])){
$insert .= " NULL, ";
}elseif($row[$i]=='0' || $row[$i]!=''){
$type = mysql_field_type($this->idresult, $i);
if($type=='tinyint' || $type=='smallint' || $type=='mediumint' || $type=='int' ||
$type=='bigint' || $type=='timestamp') {
$insert .= $row[$i] . ', ';
}else{
$dummy = '';
$srcstr = $row[$i];
for($j=0;$jgettables();
for($i=0;$igetstructable($tables[$i]);
}
$dump .= $this->getcontenttable($tables[$i]);
$dump .= "\n\n";
}
return $dump;
}
}
?>
Notice: Use of undefined constant AUST - assumed 'AUST' in /public_html/links/lang/francais.php on line 6
Notice: Use of undefined constant AF - assumed 'AF' in /public_html/links/lang/francais.php on line 7
Notice: Use of undefined constant AL - assumed 'AL' in /public_html/links/lang/francais.php on line 8
Notice: Use of undefined constant AG - assumed 'AG' in /public_html/links/lang/francais.php on line 9
Notice: Use of undefined constant AN - assumed 'AN' in /public_html/links/lang/francais.php on line 10
Notice: Use of undefined constant AO - assumed 'AO' in /public_html/links/lang/francais.php on line 11
Notice: Use of undefined constant AC - assumed 'AC' in /public_html/links/lang/francais.php on line 12
Notice: Use of undefined constant AR - assumed 'AR' in /public_html/links/lang/francais.php on line 13
Notice: Use of undefined constant AM - assumed 'AM' in /public_html/links/lang/francais.php on line 14
Notice: Use of undefined constant AU - assumed 'AU' in /public_html/links/lang/francais.php on line 15
Notice: Use of undefined constant AJ - assumed 'AJ' in /public_html/links/lang/francais.php on line 16
Notice: Use of undefined constant BF - assumed 'BF' in /public_html/links/lang/francais.php on line 17
Notice: Use of undefined constant BA - assumed 'BA' in /public_html/links/lang/francais.php on line 18
Notice: Use of undefined constant BG - assumed 'BG' in /public_html/links/lang/francais.php on line 19
Notice: Use of undefined constant BB - assumed 'BB' in /public_html/links/lang/francais.php on line 20
Notice: Use of undefined constant BO - assumed 'BO' in /public_html/links/lang/francais.php on line 21
Notice: Use of undefined constant BE - assumed 'BE' in /public_html/links/lang/francais.php on line 22
Notice: Use of undefined constant BH - assumed 'BH' in /public_html/links/lang/francais.php on line 23
Notice: Use of undefined constant BN - assumed 'BN' in /public_html/links/lang/francais.php on line 24
Notice: Use of undefined constant BT - assumed 'BT' in /public_html/links/lang/francais.php on line 25
Notice: Use of undefined constant BL - assumed 'BL' in /public_html/links/lang/francais.php on line 26
Notice: Use of undefined constant BK - assumed 'BK' in /public_html/links/lang/francais.php on line 27
Notice: Use of undefined constant BC - assumed 'BC' in /public_html/links/lang/francais.php on line 28
Notice: Use of undefined constant BR - assumed 'BR' in /public_html/links/lang/francais.php on line 29
Notice: Use of undefined constant BX - assumed 'BX' in /public_html/links/lang/francais.php on line 30
Notice: Use of undefined constant BU - assumed 'BU' in /public_html/links/lang/francais.php on line 31
Notice: Use of undefined constant UV - assumed 'UV' in /public_html/links/lang/francais.php on line 32
Notice: Use of undefined constant BM - assumed 'BM' in /public_html/links/lang/francais.php on line 33
Notice: Use of undefined constant BY - assumed 'BY' in /public_html/links/lang/francais.php on line 34
Notice: Use of undefined constant CB - assumed 'CB' in /public_html/links/lang/francais.php on line 35
Notice: Use of undefined constant CM - assumed 'CM' in /public_html/links/lang/francais.php on line 36
Notice: Use of undefined constant CA - assumed 'CA' in /public_html/links/lang/francais.php on line 37
Notice: Use of undefined constant CV - assumed 'CV' in /public_html/links/lang/francais.php on line 38
Notice: Use of undefined constant CT - assumed 'CT' in /public_html/links/lang/francais.php on line 39
Notice: Use of undefined constant CD - assumed 'CD' in /public_html/links/lang/francais.php on line 40
Notice: Use of undefined constant CI - assumed 'CI' in /public_html/links/lang/francais.php on line 41
Notice: Use of undefined constant CH - assumed 'CH' in /public_html/links/lang/francais.php on line 42
Notice: Use of undefined constant C0 - assumed 'C0' in /public_html/links/lang/francais.php on line 43
Notice: Use of undefined constant CN - assumed 'CN' in /public_html/links/lang/francais.php on line 44
Notice: Use of undefined constant CF - assumed 'CF' in /public_html/links/lang/francais.php on line 45
Notice: Use of undefined constant CG - assumed 'CG' in /public_html/links/lang/francais.php on line 46
Notice: Use of undefined constant CS - assumed 'CS' in /public_html/links/lang/francais.php on line 47
Notice: Use of undefined constant IV - assumed 'IV' in /public_html/links/lang/francais.php on line 48
Notice: Use of undefined constant HR - assumed 'HR' in /public_html/links/lang/francais.php on line 49
Notice: Use of undefined constant CU - assumed 'CU' in /public_html/links/lang/francais.php on line 50
Notice: Use of undefined constant CY - assumed 'CY' in /public_html/links/lang/francais.php on line 51
Notice: Use of undefined constant EZ - assumed 'EZ' in /public_html/links/lang/francais.php on line 52
Notice: Use of undefined constant DA - assumed 'DA' in /public_html/links/lang/francais.php on line 53
Notice: Use of undefined constant DJ - assumed 'DJ' in /public_html/links/lang/francais.php on line 54
Notice: Use of undefined constant D0 - assumed 'D0' in /public_html/links/lang/francais.php on line 55
Notice: Use of undefined constant DR - assumed 'DR' in /public_html/links/lang/francais.php on line 56
Notice: Use of undefined constant EC - assumed 'EC' in /public_html/links/lang/francais.php on line 57
Notice: Use of undefined constant EG - assumed 'EG' in /public_html/links/lang/francais.php on line 58
Notice: Use of undefined constant ES - assumed 'ES' in /public_html/links/lang/francais.php on line 59
Notice: Use of undefined constant EK - assumed 'EK' in /public_html/links/lang/francais.php on line 60
Notice: Use of undefined constant ER - assumed 'ER' in /public_html/links/lang/francais.php on line 61
Notice: Use of undefined constant EN - assumed 'EN' in /public_html/links/lang/francais.php on line 62
Notice: Use of undefined constant ET - assumed 'ET' in /public_html/links/lang/francais.php on line 63
Notice: Use of undefined constant EURO - assumed 'EURO' in /public_html/links/lang/francais.php on line 64
Notice: Use of undefined constant FJ - assumed 'FJ' in /public_html/links/lang/francais.php on line 65
Notice: Use of undefined constant FI - assumed 'FI' in /public_html/links/lang/francais.php on line 66
Notice: Use of undefined constant FR - assumed 'FR' in /public_html/links/lang/francais.php on line 67
Notice: Use of undefined constant FRTD - assumed 'FRTD' in /public_html/links/lang/francais.php on line 68
Notice: Use of undefined constant GB - assumed 'GB' in /public_html/links/lang/francais.php on line 69
Notice: Use of undefined constant GA - assumed 'GA' in /public_html/links/lang/francais.php on line 70
Notice: Use of undefined constant GG - assumed 'GG' in /public_html/links/lang/francais.php on line 71
Notice: Use of undefined constant GM - assumed 'GM' in /public_html/links/lang/francais.php on line 72
Notice: Use of undefined constant GH - assumed 'GH' in /public_html/links/lang/francais.php on line 73
Notice: Use of undefined constant GR - assumed 'GR' in /public_html/links/lang/francais.php on line 74
Notice: Use of undefined constant GJ - assumed 'GJ' in /public_html/links/lang/francais.php on line 75
Notice: Use of undefined constant GT - assumed 'GT' in /public_html/links/lang/francais.php on line 76
Notice: Use of undefined constant GV - assumed 'GV' in /public_html/links/lang/francais.php on line 77
Notice: Use of undefined constant PU - assumed 'PU' in /public_html/links/lang/francais.php on line 78
Notice: Use of undefined constant GY - assumed 'GY' in /public_html/links/lang/francais.php on line 79
Notice: Use of undefined constant HA - assumed 'HA' in /public_html/links/lang/francais.php on line 80
Notice: Use of undefined constant VT - assumed 'VT' in /public_html/links/lang/francais.php on line 81
Notice: Use of undefined constant HO - assumed 'HO' in /public_html/links/lang/francais.php on line 82
Notice: Use of undefined constant HK - assumed 'HK' in /public_html/links/lang/francais.php on line 83
Notice: Use of undefined constant HU - assumed 'HU' in /public_html/links/lang/francais.php on line 84
Notice: Use of undefined constant IC - assumed 'IC' in /public_html/links/lang/francais.php on line 85
Notice: Use of undefined constant IN - assumed 'IN' in /public_html/links/lang/francais.php on line 86
Notice: Use of undefined constant ID - assumed 'ID' in /public_html/links/lang/francais.php on line 87
Notice: Use of undefined constant IR - assumed 'IR' in /public_html/links/lang/francais.php on line 88
Notice: Use of undefined constant IZ - assumed 'IZ' in /public_html/links/lang/francais.php on line 89
Notice: Use of undefined constant EI - assumed 'EI' in /public_html/links/lang/francais.php on line 90
Notice: Use of undefined constant IS - assumed 'IS' in /public_html/links/lang/francais.php on line 91
Notice: Use of undefined constant IT - assumed 'IT' in /public_html/links/lang/francais.php on line 92
Notice: Use of undefined constant JM - assumed 'JM' in /public_html/links/lang/francais.php on line 93
Notice: Use of undefined constant JA - assumed 'JA' in /public_html/links/lang/francais.php on line 94
Notice: Use of undefined constant JO - assumed 'JO' in /public_html/links/lang/francais.php on line 95
Notice: Use of undefined constant KZ - assumed 'KZ' in /public_html/links/lang/francais.php on line 96
Notice: Use of undefined constant KE - assumed 'KE' in /public_html/links/lang/francais.php on line 97
Notice: Use of undefined constant KR - assumed 'KR' in /public_html/links/lang/francais.php on line 98
Notice: Use of undefined constant KN - assumed 'KN' in /public_html/links/lang/francais.php on line 99
Notice: Use of undefined constant KS - assumed 'KS' in /public_html/links/lang/francais.php on line 100
Notice: Use of undefined constant KU - assumed 'KU' in /public_html/links/lang/francais.php on line 101
Notice: Use of undefined constant KG - assumed 'KG' in /public_html/links/lang/francais.php on line 102
Notice: Use of undefined constant LA - assumed 'LA' in /public_html/links/lang/francais.php on line 103
Notice: Use of undefined constant LG - assumed 'LG' in /public_html/links/lang/francais.php on line 104
Notice: Use of undefined constant LE - assumed 'LE' in /public_html/links/lang/francais.php on line 105
Notice: Use of undefined constant LT - assumed 'LT' in /public_html/links/lang/francais.php on line 106
Notice: Use of undefined constant LI - assumed 'LI' in /public_html/links/lang/francais.php on line 107
Notice: Use of undefined constant LY - assumed 'LY' in /public_html/links/lang/francais.php on line 108
Notice: Use of undefined constant LS - assumed 'LS' in /public_html/links/lang/francais.php on line 109
Notice: Use of undefined constant LH - assumed 'LH' in /public_html/links/lang/francais.php on line 110
Notice: Use of undefined constant LU - assumed 'LU' in /public_html/links/lang/francais.php on line 111
Notice: Use of undefined constant MK - assumed 'MK' in /public_html/links/lang/francais.php on line 112
Notice: Use of undefined constant MA - assumed 'MA' in /public_html/links/lang/francais.php on line 113
Notice: Use of undefined constant MI - assumed 'MI' in /public_html/links/lang/francais.php on line 114
Notice: Use of undefined constant MY - assumed 'MY' in /public_html/links/lang/francais.php on line 115
Notice: Use of undefined constant MV - assumed 'MV' in /public_html/links/lang/francais.php on line 116
Notice: Use of undefined constant ML - assumed 'ML' in /public_html/links/lang/francais.php on line 117
Notice: Use of undefined constant MT - assumed 'MT' in /public_html/links/lang/francais.php on line 118
Notice: Use of undefined constant RM - assumed 'RM' in /public_html/links/lang/francais.php on line 119
Notice: Use of undefined constant MR - assumed 'MR' in /public_html/links/lang/francais.php on line 120
Notice: Use of undefined constant MP - assumed 'MP' in /public_html/links/lang/francais.php on line 121
Notice: Use of undefined constant MX - assumed 'MX' in /public_html/links/lang/francais.php on line 122
Notice: Use of undefined constant FM - assumed 'FM' in /public_html/links/lang/francais.php on line 123
Notice: Use of undefined constant MD - assumed 'MD' in /public_html/links/lang/francais.php on line 124
Notice: Use of undefined constant MN - assumed 'MN' in /public_html/links/lang/francais.php on line 125
Notice: Use of undefined constant MG - assumed 'MG' in /public_html/links/lang/francais.php on line 126
Notice: Use of undefined constant MO - assumed 'MO' in /public_html/links/lang/francais.php on line 127
Notice: Use of undefined constant MZ - assumed 'MZ' in /public_html/links/lang/francais.php on line 128
Notice: Use of undefined constant WA - assumed 'WA' in /public_html/links/lang/francais.php on line 129
Notice: Use of undefined constant NR - assumed 'NR' in /public_html/links/lang/francais.php on line 130
Notice: Use of undefined constant NP - assumed 'NP' in /public_html/links/lang/francais.php on line 131
Notice: Use of undefined constant NL - assumed 'NL' in /public_html/links/lang/francais.php on line 132
Notice: Use of undefined constant NZ - assumed 'NZ' in /public_html/links/lang/francais.php on line 133
Notice: Use of undefined constant NU - assumed 'NU' in /public_html/links/lang/francais.php on line 134
Notice: Use of undefined constant NG - assumed 'NG' in /public_html/links/lang/francais.php on line 135
Notice: Use of undefined constant NI - assumed 'NI' in /public_html/links/lang/francais.php on line 136
Notice: Use of undefined constant N0 - assumed 'N0' in /public_html/links/lang/francais.php on line 137
Notice: Use of undefined constant MU - assumed 'MU' in /public_html/links/lang/francais.php on line 138
Notice: Use of undefined constant PK - assumed 'PK' in /public_html/links/lang/francais.php on line 139
Notice: Use of undefined constant PS - assumed 'PS' in /public_html/links/lang/francais.php on line 140
Notice: Use of undefined constant PM - assumed 'PM' in /public_html/links/lang/francais.php on line 141
Notice: Use of undefined constant PP - assumed 'PP' in /public_html/links/lang/francais.php on line 142
Notice: Use of undefined constant PA - assumed 'PA' in /public_html/links/lang/francais.php on line 143
Notice: Use of undefined constant PE - assumed 'PE' in /public_html/links/lang/francais.php on line 144
Notice: Use of undefined constant RP - assumed 'RP' in /public_html/links/lang/francais.php on line 145
Notice: Use of undefined constant PL - assumed 'PL' in /public_html/links/lang/francais.php on line 146
Notice: Use of undefined constant P0 - assumed 'P0' in /public_html/links/lang/francais.php on line 147
Notice: Use of undefined constant PR - assumed 'PR' in /public_html/links/lang/francais.php on line 148
Notice: Use of undefined constant QA - assumed 'QA' in /public_html/links/lang/francais.php on line 149
Notice: Use of undefined constant RO - assumed 'RO' in /public_html/links/lang/francais.php on line 150
Notice: Use of undefined constant RS - assumed 'RS' in /public_html/links/lang/francais.php on line 151
Notice: Use of undefined constant RW - assumed 'RW' in /public_html/links/lang/francais.php on line 152
Notice: Use of undefined constant SC - assumed 'SC' in /public_html/links/lang/francais.php on line 153
Notice: Use of undefined constant ST - assumed 'ST' in /public_html/links/lang/francais.php on line 154
Notice: Use of undefined constant VC - assumed 'VC' in /public_html/links/lang/francais.php on line 155
Notice: Use of undefined constant WS - assumed 'WS' in /public_html/links/lang/francais.php on line 156
Notice: Use of undefined constant SM - assumed 'SM' in /public_html/links/lang/francais.php on line 157
Notice: Use of undefined constant TP - assumed 'TP' in /public_html/links/lang/francais.php on line 158
Notice: Use of undefined constant SA - assumed 'SA' in /public_html/links/lang/francais.php on line 159
Notice: Use of undefined constant SG - assumed 'SG' in /public_html/links/lang/francais.php on line 160
Notice: Use of undefined constant SE - assumed 'SE' in /public_html/links/lang/francais.php on line 161
Notice: Use of undefined constant SL - assumed 'SL' in /public_html/links/lang/francais.php on line 162
Notice: Use of undefined constant SN - assumed 'SN' in /public_html/links/lang/francais.php on line 163
Notice: Use of undefined constant L0 - assumed 'L0' in /public_html/links/lang/francais.php on line 164
Notice: Use of undefined constant SI - assumed 'SI' in /public_html/links/lang/francais.php on line 165
Notice: Use of undefined constant BP - assumed 'BP' in /public_html/links/lang/francais.php on line 166
Notice: Use of undefined constant SO - assumed 'SO' in /public_html/links/lang/francais.php on line 167
Notice: Use of undefined constant SF - assumed 'SF' in /public_html/links/lang/francais.php on line 168
Notice: Use of undefined constant SP - assumed 'SP' in /public_html/links/lang/francais.php on line 169
Notice: Use of undefined constant CE - assumed 'CE' in /public_html/links/lang/francais.php on line 170
Notice: Use of undefined constant SU - assumed 'SU' in /public_html/links/lang/francais.php on line 171
Notice: Use of undefined constant NS - assumed 'NS' in /public_html/links/lang/francais.php on line 172
Notice: Use of undefined constant WZ - assumed 'WZ' in /public_html/links/lang/francais.php on line 173
Notice: Use of undefined constant SW - assumed 'SW' in /public_html/links/lang/francais.php on line 174
Notice: Use of undefined constant SZ - assumed 'SZ' in /public_html/links/lang/francais.php on line 175
Notice: Use of undefined constant SY - assumed 'SY' in /public_html/links/lang/francais.php on line 176
Notice: Use of undefined constant TW - assumed 'TW' in /public_html/links/lang/francais.php on line 177
Notice: Use of undefined constant TI - assumed 'TI' in /public_html/links/lang/francais.php on line 178
Notice: Use of undefined constant TZ - assumed 'TZ' in /public_html/links/lang/francais.php on line 179
Notice: Use of undefined constant TH - assumed 'TH' in /public_html/links/lang/francais.php on line 180
Notice: Use of undefined constant TO - assumed 'TO' in /public_html/links/lang/francais.php on line 181
Notice: Use of undefined constant TN - assumed 'TN' in /public_html/links/lang/francais.php on line 182
Notice: Use of undefined constant TD - assumed 'TD' in /public_html/links/lang/francais.php on line 183
Notice: Use of undefined constant TS - assumed 'TS' in /public_html/links/lang/francais.php on line 184
Notice: Use of undefined constant TU - assumed 'TU' in /public_html/links/lang/francais.php on line 185
Notice: Use of undefined constant TX - assumed 'TX' in /public_html/links/lang/francais.php on line 186
Notice: Use of undefined constant TV - assumed 'TV' in /public_html/links/lang/francais.php on line 187
Notice: Use of undefined constant UG - assumed 'UG' in /public_html/links/lang/francais.php on line 188
Notice: Use of undefined constant UP - assumed 'UP' in /public_html/links/lang/francais.php on line 189
Notice: Use of undefined constant TC - assumed 'TC' in /public_html/links/lang/francais.php on line 190
Notice: Use of undefined constant UK - assumed 'UK' in /public_html/links/lang/francais.php on line 191
Notice: Use of undefined constant UY - assumed 'UY' in /public_html/links/lang/francais.php on line 192
Notice: Use of undefined constant US - assumed 'US' in /public_html/links/lang/francais.php on line 193
Notice: Use of undefined constant USAL - assumed 'USAL' in /public_html/links/lang/francais.php on line 194
Notice: Use of undefined constant USAK - assumed 'USAK' in /public_html/links/lang/francais.php on line 195
Notice: Use of undefined constant USAZ - assumed 'USAZ' in /public_html/links/lang/francais.php on line 196
Notice: Use of undefined constant USAR - assumed 'USAR' in /public_html/links/lang/francais.php on line 197
Notice: Use of undefined constant USCA - assumed 'USCA' in /public_html/links/lang/francais.php on line 198
Notice: Use of undefined constant USC0 - assumed 'USC0' in /public_html/links/lang/francais.php on line 199
Notice: Use of undefined constant USCT - assumed 'USCT' in /public_html/links/lang/francais.php on line 200
Notice: Use of undefined constant USDE - assumed 'USDE' in /public_html/links/lang/francais.php on line 201
Notice: Use of undefined constant USFL - assumed 'USFL' in /public_html/links/lang/francais.php on line 202
Notice: Use of undefined constant USGA - assumed 'USGA' in /public_html/links/lang/francais.php on line 203
Notice: Use of undefined constant USHI - assumed 'USHI' in /public_html/links/lang/francais.php on line 204
Notice: Use of undefined constant USID - assumed 'USID' in /public_html/links/lang/francais.php on line 205
Notice: Use of undefined constant USIL - assumed 'USIL' in /public_html/links/lang/francais.php on line 206
Notice: Use of undefined constant USIN - assumed 'USIN' in /public_html/links/lang/francais.php on line 207
Notice: Use of undefined constant USIA - assumed 'USIA' in /public_html/links/lang/francais.php on line 208
Notice: Use of undefined constant USKS - assumed 'USKS' in /public_html/links/lang/francais.php on line 209
Notice: Use of undefined constant USKY - assumed 'USKY' in /public_html/links/lang/francais.php on line 210
Notice: Use of undefined constant USLA - assumed 'USLA' in /public_html/links/lang/francais.php on line 211
Notice: Use of undefined constant USME - assumed 'USME' in /public_html/links/lang/francais.php on line 212
Notice: Use of undefined constant USMD - assumed 'USMD' in /public_html/links/lang/francais.php on line 213
Notice: Use of undefined constant USMA - assumed 'USMA' in /public_html/links/lang/francais.php on line 214
Notice: Use of undefined constant USMI - assumed 'USMI' in /public_html/links/lang/francais.php on line 215
Notice: Use of undefined constant USMN - assumed 'USMN' in /public_html/links/lang/francais.php on line 216
Notice: Use of undefined constant USMS - assumed 'USMS' in /public_html/links/lang/francais.php on line 217
Notice: Use of undefined constant USMO - assumed 'USMO' in /public_html/links/lang/francais.php on line 218
Notice: Use of undefined constant USMT - assumed 'USMT' in /public_html/links/lang/francais.php on line 219
Notice: Use of undefined constant USNE - assumed 'USNE' in /public_html/links/lang/francais.php on line 220
Notice: Use of undefined constant USNV - assumed 'USNV' in /public_html/links/lang/francais.php on line 221
Notice: Use of undefined constant USNH - assumed 'USNH' in /public_html/links/lang/francais.php on line 222
Notice: Use of undefined constant USNJ - assumed 'USNJ' in /public_html/links/lang/francais.php on line 223
Notice: Use of undefined constant USNM - assumed 'USNM' in /public_html/links/lang/francais.php on line 224
Notice: Use of undefined constant USNY - assumed 'USNY' in /public_html/links/lang/francais.php on line 225
Notice: Use of undefined constant USNC - assumed 'USNC' in /public_html/links/lang/francais.php on line 226
Notice: Use of undefined constant USND - assumed 'USND' in /public_html/links/lang/francais.php on line 227
Notice: Use of undefined constant USOH - assumed 'USOH' in /public_html/links/lang/francais.php on line 228
Notice: Use of undefined constant USOK - assumed 'USOK' in /public_html/links/lang/francais.php on line 229
Notice: Use of undefined constant USOR - assumed 'USOR' in /public_html/links/lang/francais.php on line 230
Notice: Use of undefined constant USPA - assumed 'USPA' in /public_html/links/lang/francais.php on line 231
Notice: Use of undefined constant USRI - assumed 'USRI' in /public_html/links/lang/francais.php on line 232
Notice: Use of undefined constant USSC - assumed 'USSC' in /public_html/links/lang/francais.php on line 233
Notice: Use of undefined constant USSD - assumed 'USSD' in /public_html/links/lang/francais.php on line 234
Notice: Use of undefined constant USTN - assumed 'USTN' in /public_html/links/lang/francais.php on line 235
Notice: Use of undefined constant USTX - assumed 'USTX' in /public_html/links/lang/francais.php on line 236
Notice: Use of undefined constant USUT - assumed 'USUT' in /public_html/links/lang/francais.php on line 237
Notice: Use of undefined constant USVT - assumed 'USVT' in /public_html/links/lang/francais.php on line 238
Notice: Use of undefined constant USVA - assumed 'USVA' in /public_html/links/lang/francais.php on line 239
Notice: Use of undefined constant USWA - assumed 'USWA' in /public_html/links/lang/francais.php on line 240
Notice: Use of undefined constant USWV - assumed 'USWV' in /public_html/links/lang/francais.php on line 241
Notice: Use of undefined constant USWI - assumed 'USWI' in /public_html/links/lang/francais.php on line 243
Notice: Use of undefined constant USWY - assumed 'USWY' in /public_html/links/lang/francais.php on line 244
Notice: Use of undefined constant UZ - assumed 'UZ' in /public_html/links/lang/francais.php on line 246
Notice: Use of undefined constant NH - assumed 'NH' in /public_html/links/lang/francais.php on line 247
Notice: Use of undefined constant VE - assumed 'VE' in /public_html/links/lang/francais.php on line 248
Notice: Use of undefined constant VM - assumed 'VM' in /public_html/links/lang/francais.php on line 249
Notice: Use of undefined constant YM - assumed 'YM' in /public_html/links/lang/francais.php on line 250
Notice: Use of undefined constant YI - assumed 'YI' in /public_html/links/lang/francais.php on line 251
Notice: Use of undefined constant ZA - assumed 'ZA' in /public_html/links/lang/francais.php on line 252
Notice: Use of undefined constant ZI - assumed 'ZI' in /public_html/links/lang/francais.php on line 253
Notice: Undefined variable: MyPHPLinksAnnuairePage in /public_html/links/lang/francais.php on line 271
Notice: Undefined variable: url in /public_html/links/f.inc/go.php on line 22
ERROR - ERREURERROR : No URL with this link! - ERREUR : Pas d'URL sur ce lien !