Hi,
I tried to use the procedural style but it doesn't work :-\ Now it's a :
"Call to undefined function mysqli_set_charset()"
I looked into the php source code, the compiler adds these functions to
the mysqli extension if php is compiled with the correct mysql version.
It seems to me that I'm
Hi Julien
You will probably find that if you use the procedural coding rather than
the object-oriented programming you code will work.
So instead of using:
$mysqli->set_charset("utf8");
use:
mysqli_set_charset("utf8");
Hope this helps
Greg
Julien Ricard - Condenet wrote:
Hello,
here are
Hello,
here are the versions I'm using :
Apache/2.0.54 (Win32) PHP/5.1.0RC2-dev
The mysqli client api version is : 5.0.13-rc (as written on my phpinfo
output)
I can instantiate mysqli with
$mysqli = new mysqli("localhost", "root", "---", "mysql");
But I get an error when I try to set the cha