Re: [PHP] tell me :which book is good for newman??

2007-11-17 Thread Nathan Nobbe
php|architect's Zend PHP 5 Certification Study Guide is solid; even for people whove programmed in php for a little while. i learned a few things in there. its a great starting point; and not too long either. -nathan

Re: [PHP] bank query and curl

2007-11-17 Thread Ronald Wiplinger
Stut wrote: > [EMAIL PROTECTED] wrote: >> WHY! Would you even want to pull that data first off? It would be out >> dated as of the next transaction anyway. >> Secondly if you can curl the data from the server, and get your account >> information! I suggest you change banks. Could it be that I try

Re: [PHP] tell me :which book is good for newman??

2007-11-17 Thread joychen
thank you ,i will buy them! ""Dave Goodchild"" <[EMAIL PROTECTED]> news:[EMAIL PROTECTED] > Start with Programming PHP and then get Upgrading To PHP5 (both by O'Reilly) > > On Nov 17, 2007 2:31 PM, David Giragosian <[EMAIL PROTECTED]> wrote: >> On 11/17/07, joychen <[EMAIL PROTECTED]> wrote:

Re: [PHP] Looking for a navigation recommendation (SOLVED)

2007-11-17 Thread Jon Westcot
Hi Tedd: > > YES! Exactly! Something like that would be very nice to have. > > > > MUCH appreciated! > > > > Jon > > Jon: > > Here it is: > > http://webbytedd.com/bbb/paging > > I'm assuming that you know how to establish communication with your > database; how to set up your dat

Re: [PHP] bank query and curl

2007-11-17 Thread Stut
[EMAIL PROTECTED] wrote: WHY! Would you even want to pull that data first off? It would be out dated as of the next transaction anyway. Secondly if you can curl the data from the server, and get your account information! I suggest you change banks. With that attitude you'll end up keeping your

Re: [PHP] Looking for a navigation recommendation

2007-11-17 Thread Richard Heyes
I'm working on a project wherein I need to be able to navigate to previous and next > sections of data. I'm wondering what the best way to code for this would be. When I enter the page, I'd like it to use something in the MySQL SELECT such as > "LIMIT 0,25", but the "0" portion needs to cha

RE: [PHP] bank query and curl

2007-11-17 Thread admin
WHY! Would you even want to pull that data first off? It would be out dated as of the next transaction anyway. Secondly if you can curl the data from the server, and get your account information! I suggest you change banks. Bad decision I think to make this attempt. You can bet I will be watchi

[PHP] Dynamic include path setting?

2007-11-17 Thread Hayden Livingston
Hello, I was wondering if this is possible? It seems in the apache mailing list, that it is not possible per se, but any workaround thoughts? php_value include_path .:/libraries/$1/php/lib SetEnv PERL5LIB /libaries/$1/perl/lib Thanks, HL -- PHP General Mailing List (http://www.php.net

Re: [PHP] Looking for a navigation recommendation

2007-11-17 Thread tedd
At 8:15 AM -0700 11/17/07, Jon Westcot wrote: YES! Exactly! Something like that would be very nice to have. MUCH appreciated! Jon Jon: Here it is: http://webbytedd.com/bbb/paging I'm assuming that you know how to establish communication with your database; how to set u

Re: [PHP] htmlentities()

2007-11-17 Thread Jim Lucas
Ronald Wiplinger wrote: I tried to understand htmlentities by putting this code into a test.php: Test of evil input "; $field2=htmlentities($field1,ENT_QUOTES,UTF-8); echo "field2=$field2"; you are echo'ing the same field1 variable as before. by your comments at the bottom of what you

Re: [PHP] htmlentities()

2007-11-17 Thread Casey
It is doing that ;) If you look at the source, you will see the expected output. On Nov 17, 2007, at 4:41 AM, Ronald Wiplinger <[EMAIL PROTECTED]> wrote: I tried to understand htmlentities by putting this code into a test.php: Test of evil input "; $field2=htmlentities($field1,EN

Re: [PHP] installing PHP 5.3 on MAC with mysqlnd support

2007-11-17 Thread Gergely Hodicska
Hi! Consider using Macports (http://www.macports.org/) to install it. After installing macports onto your computer, do this in the terminal: I ma using Macports, but it currently doesn't support PHP 5.3. // This will give you the available variants (I think) port info php5 To list package

Re: [PHP] installing PHP 5.3 on MAC with mysqlnd support

2007-11-17 Thread Gergely Hodicska
Hi! http://www.phpmac.com/ This project seems dead. Best Regards, Felhő -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Looking for a navigation recommendation

2007-11-17 Thread Jon Westcot
Hi Tedd: > >Hi all: > > > > I'm working on a project wherein I need to be able to navigate > >to previous and next sections of data. I'm wondering what the best > >way to code for this would be. > > > > When I enter the page, I'd like it to use something in the MySQL > >SELECT such as "LI

Re: [PHP] Looking for a navigation recommendation

2007-11-17 Thread tedd
At 7:55 AM -0700 11/17/07, Jon Westcot wrote: Hi all: I'm working on a project wherein I need to be able to navigate to previous and next sections of data. I'm wondering what the best way to code for this would be. When I enter the page, I'd like it to use something in the MySQL SE

[PHP] Looking for a navigation recommendation

2007-11-17 Thread Jon Westcot
Hi all: I'm working on a project wherein I need to be able to navigate to previous and next sections of data. I'm wondering what the best way to code for this would be. When I enter the page, I'd like it to use something in the MySQL SELECT such as "LIMIT 0,25", but the "0" portion ne

Re: [PHP] tell me :which book is good for newman??

2007-11-17 Thread Dave Goodchild
Start with Programming PHP and then get Upgrading To PHP5 (both by O'Reilly) On Nov 17, 2007 2:31 PM, David Giragosian <[EMAIL PROTECTED]> wrote: > On 11/17/07, joychen <[EMAIL PROTECTED]> wrote: > > > > tell me :which book is good for newman?? > > > You mean paul? > -- PHP General Mailing List

Re: [PHP] tell me :which book is good for newman??

2007-11-17 Thread David Giragosian
On 11/17/07, joychen <[EMAIL PROTECTED]> wrote: > > tell me :which book is good for newman?? You mean paul?

Re: [PHP] htmlentities()

2007-11-17 Thread Ludovic André
Hi, I tried to understand htmlentities by putting this code into a test.php: [...] The output on the screen is: field1=*Greater input and lower input* field2=Greater input and lower input Greater input and lower input A 'quote' is bold A 'quote' is bold I expected that it would give me in

[PHP] htmlentities()

2007-11-17 Thread Ronald Wiplinger
I tried to understand htmlentities by putting this code into a test.php: Test of evil input "; $field2=htmlentities($field1,ENT_QUOTES,UTF-8); echo "field2=$field2"; echo htmlentities($field1,ENT_QUOTES,UTF-8); echo ""; $str = "A 'quote' is bold"; // Outputs: A 'quote' is bold ec

[PHP] tell me :which book is good for newman??

2007-11-17 Thread joychen
tell me :which book is good for newman??

Re: [PHP] [NEWBIE GUIDE] For the benefit of new members

2007-11-17 Thread Cem Kayali
Peter Ford-4 wrote: > >> >> I was all ready to jump on Point #6 to disagree until I read the >> next paragraph, updating that with the correct information. PHP can >> find out the OS of the system on which the browser is running. >> > > Strictly speaking, PHP can only find out what the