Php yi güncelledikten sonra şu sorun sitemde çıktı arkadaşlar.
Strict Standards: Declaration of ezSQL_mysql::query() should be compatible with ezSQLcore::query() in /home/*******/public_html/ezsql/ez_sql_mysql.php on line 32
Strict Standards: Declaration of ezSQL_mysql::escape() should be compatible with ezSQLcore::escape() in /home/*******/public_html/ezsql/ez_sql_mysql.php on line 32
Ftp den ezsql klasörünün içindeki ez_sql_mysql.php nin 32. satırına bakıldığında aşağıdaki
kırmızı ile işaretldiğim
{
bu çıkıyor.
Bu sorunu nasıl halledebilirim ? Şimdiden teşekkür ederim...
/**********************************************************************
* Author: Justin Vincent (justin@visunet.ie)
* Web...: http://php.justinvincent.com
* Name..: ezSQL_mysql
* Desc..: mySQL component (part of ezSQL databse abstraction library)
*
*/
/**********************************************************************
* ezSQL error strings - mySQL
*/
$ezsql_mysql_str = array
(
1 => 'Require $dbuser and $dbpassword to connect to a database server',
2 => 'Error establishing mySQL database connection. Correct user/password? Correct hostname? Database server running?',
3 => 'Require $dbname to select a database',
4 => 'mySQL database connection is not active',
5 => 'Unexpected error while trying to select database'
);
/**********************************************************************
* ezSQL Database specific class - mySQL
*/
if ( ! function_exists ('mysql_connect') ) die('<b>Fatal Error:</b> ezSQL_mysql requires mySQL Lib to be compiled and or linked in to the PHP engine');
if ( ! class_exists ('ezSQLcore') ) die('<b>Fatal Error:</b> ezSQL_mysql requires ezSQLcore (ez_sql_core.php) to be included/loaded before it can be used');
class ezSQL_mysql extends ezSQLcore
{
var $dbuser = false;
var $dbpassword = false;
var $dbname = false;
var $dbhost = false;