Re: [PHP] PHP-5 book

2004-07-21 Thread Philip Olson
> Can someone advise me of a very good PHP-5 book. Hands down the best: Advanced PHP Programming by George Schlossnagle Regards, Philip -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] PHP-5 book

2004-07-21 Thread Nadim Attari
Hello friends, Can someone advise me of a very good PHP-5 book. Most probably i'll buy it from eyrolles.com Thanks, ~ nadim attari -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] session and mysql connection identifier

2004-07-21 Thread Dennis Gearon
What he is really looking for is connection pooling. Do a google and see if you can find 'mysql connection pooling php'. It is persistent connections across page accesses, which PHP does not do natively AFAIK. Jason Wong <[EMAIL PROTECTED]> wrote: On Wednesday 21 July 2004 13:47, mukta telang wr

Re: [PHP] what is difference between php and perl

2004-07-21 Thread Jason Davidson
they are 2 seperate languages, completely. I dont beleive the 2 languages have any relation to eachother, possibly you can relate the 2 as serverside scripting languages.. but.. its still a stretch :) see www.perl.org or php.net for history of the two. Jason On Wed, 21 Jul 2004 12:35:46 +0530,

[PHP] Re: How to use reflection API?

2004-07-21 Thread Jason Barnett
Andreas Goetz wrote: I'm trying to use theh reflection API but can't seem to start: $func= new Reflection_Function('counter'); This was changed, manuals haven't caught up yet. This should be $func = new ReflectionFunction('counter'); You can also just use the static method export, if you intend

[PHP] Re: string filtering

2004-07-21 Thread Mr. Bogomil Shopov
Hello http://bg2.php.net/manual/en/function.preg-match.php Regards Bogomil http://spisanie.com/indexen.php - WebDevMagazine C.F. Scheidecker Antunes wrote: Hello all, I need to filter some strings. They can only contain characters like a...z or A..Z and 0..9. Some strings have blank spaces, -,./?

Re: [PHP] what is difference between php and perl

2004-07-21 Thread Justin Patrin
On Wed, 21 Jul 2004 12:35:46 +0530, Syed Ghouse <[EMAIL PROTECTED]> wrote: > Hi all > > will anybody tell me the difference between perl and php > I'm giving you way too much hereyou should just search the web, I'm sure you can find much more in depth explanations. Perl is an old, old, incr

[PHP] Re: Money format

2004-07-21 Thread Lukáš Moravec - PTV Servis
I got it.thankx to all. Lukas

RE: [PHP] textarea/display question...

2004-07-21 Thread Dennis Gearon
Make sure to remove tags via: $var_that_will_be_displayed = strip_tags( $var_from_user_input_via_POST_or_GET_or_COOKIE ); if you are going to display or mail it as part of a link(email or URL), you might do this instead: $var_that_will_be_part_of_a_link = strip_tags( rawurldecode(

Re: [PHP] session and mysql connection identifier

2004-07-21 Thread Justin Patrin
On Tue, 20 Jul 2004 22:47:43 -0700 (PDT), mukta telang <[EMAIL PROTECTED]> wrote: > Hi, > I want to use mysql persistent connection to connect > to mysql and use the connection identifier or handle > in subsequent pages/scripts. So in script1.php I have > session_start(); > session_register('conn')

<    1   2   3