Error message Strict standards: Non-static method should not be called statically in php
// Your method could be:
public function customFunction() {
// your code here
// your code here
}
// or could be:
function customFunction() {
// your code here
}
// To fix this you can do this method:
// Put static or public static
public static function customFunction() {
// your code here
}
Your method is missing a static keyword.
For more information about static keyword read here:
http://de2.php.net/manual/en/language.oop5.static.php
// or could be:
function customFunction() {
// your code here
}
// To fix this you can do this method:
// Put static or public static
public static function customFunction() {
// your code here
}
Your method is missing a static keyword.
For more information about static keyword read here:
http://de2.php.net/manual/en/language.oop5.static.php