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