Guimb0
Messages postés10Date d'inscriptionlundi 9 avril 2012StatutMembreDernière intervention28 septembre 2014
-
10 sept. 2014 à 00:47
Utilisateur anonyme -
10 sept. 2014 à 08:48
Je galère depuis un bout mais sans réponse ...
Warning: Creating default object from empty value in /home/auberget/public_html/publi-print.net/assets/php/config.class.php on line 56
An error occurer and the message can't be sent!
J'ai cette ligne de code m'indiquant une erreur dans mon php.
Le voici la ligne de gras, italic et souligné pour vous aider a vous retrouver!
Merci de votre aide !
<?php
//www.resellscripts.info
error_reporting(E_ALL);
session_start();
function pr($str){
echo '<pre>';
print_r($str);
echo '</pre>';
}
class Config {
/** Contain the result error message **/
public $invalid = array();
/** Contain the result boolean **/
public $warning = array();
public $msg = array('error' => 'An error occurer and the message can\'t be sent!',
'success' => 'Email sent successfully!<br />Thank you for contacting us.'
);
// Fatal error
protected $fatalError = array();
static private function clean($post){
$re = array();
foreach($post as $key => $data){
$re[$key] = htmlspecialchars($data);
}
return $re;
}
$this->Config->Address = array(); D'après cette écriture, Config serait un champ de la classe Config représentée par le $this. Tu es sûr que c'est bien ce que tu voulais faire ? Ce ne serait pas plutôt simplement :