Re: [PHP] Recommendations for PHP debuggers?

2006-08-21 Thread Yann Larrivee
Hello, Just use xdebug www.xdebug.org It's nice, and IDE independant. It also generate code profile (in case you need to optimise) Has far has IDE wise. I know Komodo use xdebug for it's debugger and code step trough, so it must be good. If you have more questions regarding xdebug let me

Re: [PHP] HOWTO read PHP source code into a textarea

2005-02-25 Thread Yann Larrivee
Hello More precisy see http://ca.php.net/manual/en/ref.filesystem.php Cheers, Yann On Friday 25 February 2005 18:56, Tyler Replogle wrote: Try php.net for flat file date basing. It should tell you how to read a line and write to a new line. From: Tim Burgan [EMAIL PROTECTED] To: [php] PHP

Re: [PHP] PHP5 DOM

2005-02-22 Thread Yann Larrivee
Hi Sergio maybe you should have a look at importNode http://ca3.php.net/manual/en/function.dom-domdocument-importnode.php I beleive this is what you need along with Normalize. Good luck. Yann On Tuesday 22 February 2005 06:54, Sergio Gorelyshev wrote: Hi to all. I have a problem. I need to

Re: [PHP] PHP Oficial Certification

2004-08-28 Thread Yann Larrivee
programmers is just solving one part of the problem. Certifying software and business is the big piece and where money will be involed.! On Sat, 2004-08-28 at 11:57, Chris Shiflett wrote: --- Yann Larrivee [EMAIL PROTECTED] wrote: I personally dont beleive in this. It is juste another way to make

Re: [PHP] PHP Oficial Certification

2004-08-26 Thread Yann Larrivee
On Thu, 2004-08-26 at 18:07, Kevin Waterson wrote: This one time, at band camp, Marcos Thiago M. Fabis [EMAIL PROTECTED] wrote: I just saw that: http://www.phparch.com/cert/ What do they mean by 'official' certification? Is this sanctioned by php.net? Not at all. I personally dont

Re: [PHP] PHP Oficial Certification

2004-08-26 Thread Yann Larrivee
Sorry another reply, there use to be the .geek php certification that was annonced on php.net then was removed right off like 2 days after) Was it cause of some pressure of a companie and group of people ? You tell me. It was not really professional according to me, but you cant kill the

Re: [PHP] PHP Oficial Certification

2004-08-26 Thread Yann Larrivee
What is a PHP certification anyway. TO see if you know the modules/functions ? Or see if you know how to programme well. If you wanna show if you can programme well, sun would do the job. Yann -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

Re: [PHP] PHP Oficial Certification

2004-08-26 Thread Yann Larrivee
time ans since your job requires both in this case the sun certification means more. But certifications are just there to prove your level of understanding. Yann On Fri, 2004-08-27 at 00:23, John Nichel wrote: John Holmes wrote: Yann Larrivee wrote: If you wanna show if you can programme

Re: [PHP] Re: oop too slow

2004-08-19 Thread Yann Larrivee
You could simply recall the constructor if the object exist. This way you do not create the objects for every data entry you have and aviously it will use less ressources. Also like someone else told you, Get a Debuger! It will point out the slow part of your code. For example i had 30 000

Re: [PHP] MathML

2004-07-27 Thread Yann Larrivee
Hi, I know there is an extension to render mathml with php4. You can find more information about it here. http://www.math.mcgill.ca/~drew/mathmlrender/ Yann Larrivee On Tue, 2004-07-27 at 09:50, EE wrote: Dears, I wounder if PHP support MathML? I not really not sure if actually

Re: [PHP] PHP Debugger 4 Linux?

2004-06-04 Thread Yann Larrivee
Xdebug, is free and works on unix and windows and it is a PHP extension. www.xdebug.org Yann On Fri, 2004-06-04 at 09:51, Marco Schuler wrote: Am Fr, 2004-06-04 um 00.14 schrieb Nick Wilson: Hi everyone, Can anyone recommend a good debugger for *nix? Zend Studio Many thx! --

Re: [PHP] xml - xslt - xsl:fo - pdf

2004-05-24 Thread Yann Larrivee
You need the pear packadge XML_fo2PDF http://pear.php.net/package/XML_fo2pdf Yann On Mon, 2004-05-24 at 15:22, Ray Hunter wrote: On Mon, 2004-05-24 at 10:53, juan vazquez wrote: Hi, I am trying to transform a xsl:fo file to pdf. I generate xml files from mysql and I can convert them to

Re: [PHP] PHP5 Release

2004-03-22 Thread Yann Larrivee
RC's should never be used in production area, you can use them to teste the new feautres and your software. Yann On Mon, 2004-03-22 at 20:45, [EMAIL PROTECTED] wrote: Hi there i noticed RC1 is released, it states not for critical use, does that mean for development purposes still ? -- PHP

Re: [PHP] CMS Templating with Standards Based HTML Delima...

2004-03-20 Thread Yann Larrivee
Hi, There are a few steps to do befor you go ahead and choose a CMS. One of them, is determining your needs. Second is looking at the major projects and see how each of them answer your needs. The size of the community supporting the project. Code quality (does it re-use existing code from the

Re: [PHP] extract(filename)

2004-02-04 Thread Yann Larrivee
this instead of hand-coding 48 files. Do-able? How? I know these variables (PHP Version 4.3.4) but don't know how to start? $REQUEST_URI $_SERVER[REQUEST_URI] $SCRIPT_NAME $_SERVER[SCRIPT_NAME] $_SERVER[PHP_SELF] $PHP_SELF Thanks, J -- Yann Larrivee [EMAIL PROTECTED] -- PHP General

Re: [PHP] _(What does this do?)

2004-01-12 Thread Yann Larrivee
This is the equivalent to the function gettext http://ca3.php.net/manual/en/function.gettext.php Yann Larrivee http://conf.phpquebec.com http://protonicdesign.com On Mon, 2004-01-12 at 12:42, Kelly Hallman wrote: I just ran across this syntax in someone else's code. I can't detect any

Re: [PHP] Generating PDF

2004-01-07 Thread Yann Larrivee
Thanks, it was a permission issue. Yann On Wed, 2003-12-31 at 11:13, Evan Nemerson wrote: On Wednesday 31 December 2003 09:29 am, Yann Larrivee wrote: Hi i am trying to generate a PDF with PHP5 (latest cvs) and PDFLib 5.0.2 I have this very basic example that i took from php.net and saw

[PHP] Generating PDF

2003-12-31 Thread Yann Larrivee
Hi i am trying to generate a PDF with PHP5 (latest cvs) and PDFLib 5.0.2 I have this very basic example that i took from php.net and saw the same code on http://www.sitepoint.com/article/1225/1 ?php $pdf = pdf_new(); pdf_open_file($pdf, philosophy.pdf); pdf_begin_page($pdf, 595, 842); $arial =

[PHP] SQL injection

2003-10-16 Thread Yann Larrivee
Hi i read many thing on sql injection but i just cant sumarize all the information. Most site (PHPadvisory.com, phpsecure.info, other found on google) dont talk to mutch on how to prevent SQL injection. At some place, they mentionned having a badword list, but really in a product description we

[PHP] preg, patern quantifier limit

2003-08-01 Thread Yann Larrivee
at offset 19 ... So it appears that quantifiers are limited. Anybody knows what that limit is ? Thanks -- Yann Larrivee [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: __get, __set, __clone

2003-07-09 Thread Yann Larrivee
like i am doing a capital sin :D Yann On Wed, 2003-07-09 at 02:59, Yann Larrivee wrote: -Forwarded Message- From: Greg Beaver [EMAIL PROTECTED] To: Yann Larrivee [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] [EMAIL PROTECTED] Subject: Re: __get, __set, __clone Date: 08 Jul 2003 22:13:37

[PHP] __get, __set, __clone

2003-07-08 Thread Yann Larrivee
) For a moment i tought i would save me time, but if i have to redefine them what is the point ? I guess i am somewhat confuse on this issue, any explanation would be appreciated. Thanks -- Yann Larrivee [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe

[PHP] php5 methode + num parameters

2003-07-07 Thread Yann Larrivee
. Anybody else has experienced this problem ? Thanks -- Yann Larrivee [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] outputting xml declaration

2003-07-02 Thread Yann Larrivee
that it gives an errorstring but it writes the output in the error_log of apache... Greetings, -- Steven Apostolou [EMAIL PROTECTED] -- Yann Larrivee [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Problems compiling PHP 5.0.0b1

2003-07-01 Thread Yann Larrivee
-- Yann Larrivee [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] PHP application using gettext

2003-07-01 Thread Yann Larrivee
to be installed on the server in order for people to use your application . Thanks -- Yann Larrivee [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] .inc.php

2003-07-01 Thread Yann Larrivee
Yes beacause the real extension is .php On Tue, 2003-07-01 at 17:38, Kyle Babich wrote: When .inc.php files are included they are also executed whenever the script is executed right? -- Kyle -- Yann Larrivee [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net

Re: [PHP] Zend Studio and DreamWeaver MX

2003-06-27 Thread Yann Larrivee
,its price and it those not messup my html code ! -- Yann Larrivee [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] max_execution_time

2003-06-17 Thread Yann Larrivee
Hi, i made a major programing mistake this mornning. It probably helped me to figure out a bug in PHP 5. But i would like to confirme with more people... class MyClass{ public MylClass(){ $this-MyFunc(); } private MyFunc(){ $this-MyFunc();

Re: [PHP] max_execution_time

2003-06-17 Thread Yann Larrivee
But i think that it should stop after 30 secondes no ? Yann On Tue, 2003-06-17 at 22:35, R'twick Niceorgaw wrote: doesn't sound like a bug to me ... after all there's something called recursive functions ? - Original Message - From: Yann Larrivee [EMAIL PROTECTED] To: [EMAIL

Re: [PHP] PHP installation on RedHat

2003-06-15 Thread Yann Larrivee
Oups sorry with a link it always works better ;) http://protonicdesign.com/tutorial/sablot_and_php.php Yann Larrivee www.phpquebec.org www.protonicdesign.com Sorry the tutorial is not in french yet. I will translate it soone. On Sun, 2003-06-15 at 08:02, Tim Best wrote: Bonsoir Yann, Je

Re: [PHP] PHP installation on RedHat

2003-06-14 Thread Yann Larrivee
think it should make a difference. Yann Larrivee www.phpquebec.org www.protonicdesign.com On Sat, 2003-06-14 at 19:24, Info Best-IT wrote: Anyone know where I can get a better step by step how to for installation of PHP with DOM, XSLT, and XPATh support on Red Hat? PHP.NET is not so hot

Re: [PHP] Re: PGP?

2003-06-07 Thread Yann Larrivee
Look up gpgext on http://freshmeat.net/projects/gpgext/?topic_id=44%2C809 Its a php extension that enable you to manage keys, encrypt, decrypt with gpg and php. Yann Larrivee www.phpquebec.org On Fri, 2003-06-06 at 18:44, Ryan Vennell wrote: chances are, if it's possible it'd be a plugin

[PHP] Evaluating defines

2003-06-05 Thread Yann Larrivee
Hi, i have a template system where the user can define some multilangual defines, identified by {Label[My_define_name]} in the template. Its one of the way i figured to go around the probleme of multilangual websites. Ok the function below parse the template and gets all the {Lang[My_deifne]}

Re: [PHP] Evaluating defines

2003-06-05 Thread Yann Larrivee
I found the fonction constant that return the value of a constant if you passe the name of the constant in parameter. so it would now be - $replace_by[] = constant$out[2][$i]); - It should also be faster then eval Thanks for the help Yann Larrivee On Thu, 2003-06-05 at 00:21, Ernest

Re: [PHP] PHP getting values from XML

2003-06-01 Thread Yann Larrivee
Hi there are a couple projects done in php to go around these problemes however it will cost you on performance. Here are a couple projects you might want to look into (I never used them, but since the book XML and PHP talk about them i guess they are good proejcts) eZXML (an alternative to