php-general Digest 17 Nov 2007 09:54:26 -0000 Issue 5133

2007-11-17 Thread php-general-digest-help
php-general Digest 17 Nov 2007 09:54:26 - Issue 5133 Topics (messages 264727 through 264738): Re: Loop issues 264727 by: Jim Lucas 264728 by: Jim Lucas Re: Open Source BTS?? -- Roach 264729 by: Daevid Vincent 264732 by: David Calkins Re: Open Source BTS??

php-general Digest 17 Nov 2007 23:15:33 -0000 Issue 5134

2007-11-17 Thread php-general-digest-help
php-general Digest 17 Nov 2007 23:15:33 - Issue 5134 Topics (messages 264739 through 264755): tell me :which book is good for newman?? 264739 by: joychen 264742 by: David Giragosian 264743 by: Dave Goodchild htmlentities() 264740 by: Ronald Wiplinger

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 browser

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

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

[PHP] htmlentities()

2007-11-17 Thread Ronald Wiplinger
I tried to understand htmlentities by putting this code into a test.php: ?php if(!$page) { ? H3Test of evil input/H3 form method=post action=?php echo $PHP_SELF? INPUT type=text name=field1 size=100 maxlength=100 INPUT type=hidden name=page value=1 INPUT type=submit name=submit value=Check it!

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=bGreater input and lower input/b bGreater input and lower input/b A 'quote' is bbold/b A 'quote' is bbold/b I expected that it

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?

[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 needs

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] 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

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 LIMIT 0,25, but

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] 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] 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: ?php if(!$page) { ? H3Test of evil input/H3 form method=post

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: ?php if(!$page) { ? H3Test of evil input/H3 form method=post action=?php echo $PHP_SELF? INPUT type=text name=field1 size=100 maxlength=100 INPUT type=hidden name=page value=1 INPUT type=submit

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

[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? LocationMatch ^/(.*)track php_value include_path .:/libraries/$1/php/lib SetEnv PERL5LIB /libaries/$1/perl/lib /LocationMatch Thanks, HL -- PHP

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

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 change

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

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 database; and how to

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: tell me

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 to use

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

2007-11-17 Thread Nathan Nobbe
php|architect's Zend PHP 5 Certification Study Guidehttp://www.amazon.com/architects-Zend-Certification-Study-Guide/dp/0973862149 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