Re: [PHP] PEAR segfaulting

2009-10-19 Thread Thodoris
Thodoris wrote: Is there a good reason for needing this pear package? http://pear.php.net/package/DB It is old and it has been replaced with MDB2 some time ago. Why don't you use it instead of trying to install DB. The issue here isn't what package is being installed. The issue

Re: [PHP] PEAR segfaulting

2009-10-19 Thread Thodoris
-1.9.0.tgz (291,634 bytes) ..done: 291,634 bytes Segmentation fault Manually is the best solution as far as I can tell: http://pear.php.net/manual/en/installation.getting.php Eddie is right. Give it a try. -- Thodoris -- PHP General Mailing List (http

Re: [PHP] Please don't kick me!

2009-10-20 Thread Thodoris
to me. I wasn't able to print greek for example with some other classes I 've tried. I am not sure if ezpdf does that. -- Thodoris -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Get rid of warning massage

2009-10-20 Thread Thodoris
or an error. -- Thodoris

Re: [PHP] Get rid of warning massage

2009-10-20 Thread Thodoris
http://php.net/manual/en/language.operators.errorcontrol.php ? A better idea would be suppressing the error messages in a production site: ini_set('display_errors',0); -- Thodoris -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] how call a variable in a text

2009-10-22 Thread Thodoris
on the same principle you mention above: print Test: ${var[0][0]}; -- Thodoris

Re: [PHP] how call a variable in a text

2009-10-22 Thread Thodoris
}); } So no they are not meant to go around. You can use them this way as well. -- Thodoris

Re: [PHP] how call a variable in a text

2009-10-22 Thread Thodoris
. See some examples: http://php.net/manual/en/language.types.string.php in the complex (curly) syntax section. -- Thodoris

Re: [PHP] how call a variable in a text

2009-10-22 Thread Thodoris
Using the same type way as before in this thread. This was supposed to come out as using the same way of thinking. But the English-Nerdish dictionary came out... -- Thodoris -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] how call a variable in a text

2009-10-22 Thread Thodoris
of putting vars inside strings... -- Thodoris

Re: [PHP] strtotime problem

2008-10-10 Thread Thodoris Goltsios
Greetings, Thodoris. In reply to Your message dated Wednesday, October 8, 2008, 16:35:40, Greetings to you too :-) . From your function name I assume you want to use it in MySQL. In that case, why don't you have MySQL do all the magic for you? eg. INSERT INTO table (col) VALUES

Re: [PHP] Re: Cannot create statement handler

2008-11-17 Thread Thodoris Goltsios
Thodoris wrote: I was wondering if anyone sees something I am bypassing: I have this sample code that works in another server: ?php function getClientFullName($dbh,$id){ // die(var_dump($dbh)); $sql = SELECT * FROM Clients WHERE Id=.$id; // die(print $sql); $sthr = $dbh-query

Re: [PHP] php rpm

2009-02-04 Thread Thodoris Goltsios
. --- Thodoris

Re: [PHP] fileinfo on RHEL5

2009-05-13 Thread Thodoris Goltsios
Thodoris wrote: Is fileinfo pecl extension installed as a package or with pecl? In case it is installed as an rpm try to remove it and install it as an extension in case the package is broken for some reason. I installed it with PECL: /usr/share/pear/bin/pecl install fileinfo Other

<    1   2   3