Hi all,
Does anyone know how can I open an existing PDF file to get the text
content from it, into PHP???
Many, many thanks!
--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
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
I'm trying to use an object as a session var so I could handle its
properties and methods as long as the session is still on. But when I
use a second PHP script the values inside this object are lost. I have a
script like this.
getCod() == 0) {
echo $new_object->getMsgError();
} else {
$_SES
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