At 12:27 PM -0500 12/12/09, Robert H wrote:
What is a good beginners programming book for PHP? I like "dead
trees" more than reading stuff on my screen, so I am looking for a
book.
Thanks!
Bob
Bob:
I've purchased and read literally scores of programming books and all
have value. In fact,
On Sat, Dec 12, 2009 at 9:27 AM, Robert H wrote:
> What is a good beginners programming book for PHP? I like "dead trees" more
> than reading stuff on my screen, so I am looking for a book.
O'Reilly is good for getting the facts. You could start with Programming PHP:
http://oreilly.com/catal
Programming php from Eric
Bastien
Sent from my iPod
On Dec 12, 2009, at 12:27 PM, Robert H wrote:
What is a good beginners programming book for PHP? I like "dead
trees" more than reading stuff on my screen, so I am looking for a
book.
Thanks!
Bob
--
PHP General Mailing List (http://w
On Sun, 2009-12-13 at 01:42 +0700, shiplu wrote:
> On Sun, Dec 13, 2009 at 12:27 AM, Robert H wrote:
> > What is a good beginners programming book for PHP? I like "dead trees" more
> > than reading stuff on my screen, so I am looking for a book.
> >
>
> There are plenty of books in amazon.com
>
On Sun, Dec 13, 2009 at 12:27 AM, Robert H wrote:
> What is a good beginners programming book for PHP? I like "dead trees" more
> than reading stuff on my screen, so I am looking for a book.
>
There are plenty of books in amazon.com
Order one and start reading.
--
A K M Mokaddim
My talks, http:/
What is a good beginners programming book for PHP? I like "dead trees"
more than reading stuff on my screen, so I am looking for a book.
Thanks!
Bob
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Wanted to thank the handful of you who wrote me with some hints. I really
appreciate the guidance. :) The test form is working like a champ.
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
ed'] and
assign that to the hidden val..
in a similar manner, you could also check in your logic using the $_POST[]
val...
-bruce
-Original Message-
From: Iggep [mailto:[EMAIL PROTECTED]
Sent: Wednesday, September 07, 2005 3:47 PM
To: php-general@lists.php.net
Subject: [PHP] L
On Wed, Sep 07, 2005 at 06:47:28PM -0400, Iggep wrote:
> Hey all! I sat down and started learning PHP today and ran into a bit of a
> spot. Hoped someone here could lead me in the right direction. I created a
> simple test form called form.php. I thought I had this strait in my mind
> when I
Hey all! I sat down and started learning PHP today and ran into a bit of a
spot. Hoped someone here could lead me in the right direction. I created a
simple test form called form.php. I thought I had this strait in my mind
when I created it, but obviously it didn't work. All I want to do is
A few months back I signed up for the O'Reilly Safari Bookshelf. For
about $20 a month you can check out up to 10 books to read online (put
them on your bookshelf). Too many times I've bought a book and found
only one or two chapters helpful. Or bought a book for a specific
chapter. Now I can j
The Manual is great - but most people seem to get the hang of PHP faster if
they Watch people in action - then move onto reading the Manual...
Chris Shifflett's link (where he's an Instructor) is great too
(phparch.com)...
Bill McEachran wrote:
I'm just learning PHP. If anyone knows of any affordable quality on-line
based PHP courses please pass on the details.
php|architect provides a live, comprehensive online training course for PHP:
http://phparch.com/shop_product.php?itemid=89
Disclaimer: I'm one of the de
_www.Lynda.com_ (http://www.Lynda.com) has a new Video tutorial... about 9
1/2 hours long.
Best one I've found for the price would be _www.VTC.com_ (http://www.VTC.com)
which is $30 a month and you can get like 25 total hours of PHP and
MySQL... They're good for Beginners - then check ou
I'm just learning PHP. If anyone knows of any affordable quality on-line
based PHP courses
please pass on the details.
Thanks.
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
> -Original Message-
> From: CPT John W. Holmes [mailto:[EMAIL PROTECTED]
> Sent: 31 July 2003 15:54
> you basically
> have this:
>
> list($k,$v,$key,$value) = array(1=>'abc', 'value'=>'abc', 0=>'a',
> 'key'=>'a');
>
> So, how this works is that list starts with $value. $value is
> at
From: "Ford, Mike [LSS]" <[EMAIL PROTECTED]>
> From: John W. Holmes [mailto:[EMAIL PROTECTED]
> > The four element array will be
> > 1 => 'one'
> > value => 'one'
> > 0 => 0
> > key => 0
>
> OK, some more red pen coming along
Since we're whipping them out (red pens that is)
> The four-element
> -Original Message-
> From: John W. Holmes [mailto:[EMAIL PROTECTED]
> Sent: 29 July 2003 23:05
>
> Curt Zirzow wrote:
> > Ok... I'm getting the red pen out now :)
> [snip]
> > the each() function returns a one element array that the current
> > (internal) array pointer is pointing to an
"Curt Zirzow" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> * Thus wrote John W. Holmes ([EMAIL PROTECTED]):
> >
[snip]
> don't but all that matters to most is: it works.. and foreach has
> taken over its job anyway.
Just a small comment... foreach() is not equal to a while/each
Curt Zirzow wrote:
* Thus wrote Curt Zirzow ([EMAIL PROTECTED]):
think it was made to be intentionally confusing. For what reason, I
don't but all that matters to most is: it works.. and foreach has
I cant type nor proof read today... at least before hitting send.
I think I understood you.
* Thus wrote Curt Zirzow ([EMAIL PROTECTED]):
> think it was made to be intentionally confusing. For what reason, I
> don't but all that matters to most is: it works.. and foreach has
I cant type nor proof read today... at least before hitting send.
Curt
--
"I used to think I was indecisiv
* Thus wrote John W. Holmes ([EMAIL PROTECTED]):
>
> and apparently list() will ignore the keys that do not have numerical
> indexes. The manual says numerical indexes are required, but not what
> happens when they are encounted. It looks like they are just ignored.
>
> list($k,$v) = array('foo
Curt Zirzow wrote:
Ok... I'm getting the red pen out now :)
[snip]
the each() function returns a one element array that the current
(internal) array pointer is pointing to and will return false if at
the end of the array.
It actually returns a four element array (as per the manual).
the list() fu
Ok... I'm getting the red pen out now :)
* Thus wrote CPT John W. Holmes ([EMAIL PROTECTED]):
> > Hello everyone,
> > Am new to php and have run into a problem while reading my book... can
> anybody tell me what does this mean:
>
> Hi... let's see who gets this one first... :)
>
> > foreach($in
> Hello everyone,
> Am new to php and have run into a problem while reading my book... can
anybody tell me what does this mean:
Hi... let's see who gets this one first... :)
> foreach($invoice as $number => $pppno)
$invoice is an array. foreach() is going to loop through that array one
element a
* Thus wrote [EMAIL PROTECTED] ([EMAIL PROTECTED]):
>
> Hello everyone,
> Am new to php and have run into a problem while reading my book... can anybody tell
> me what does this mean:
>
> foreach($invoice as $number => $pppno)
this rather straight forward:
foreach([array] as [key] => [val] )
of $state.
Hope this helps.
Robbert van Andel
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: Tuesday, July 29, 2003 1:43 PM
To: [EMAIL PROTECTED]
Subject: [PHP] learning php - problem already
Hello everyone,
Am new to php and have run into a problem w
I do understand for loops and while loops but this is a bit
confusing...do you haev any links I can read up on these?
http://www.php.net/manual/en/ has all the info you need
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Hello everyone,
Am new to php and have run into a problem while reading my book... can anybody tell me
what does this mean:
foreach($invoice as $number => $pppno)
and also this:
while(list($k,$v,) = each($a))
I do understand for loops and while loops but this is a bit confusing...do you haev
At 16:14 12.02.2003, Greg Luce said:
[snip]
>Could anyone recommend a fast track for learning php for an experienced
>ColdFusion developer? I'm working my way through the tutorials on
>php.net and free2code.net, but they seem pretty kindergarten. Any
>advice?
You may want to wait a few days on this book. The 2nd edition is due out
tomorrow.
Search on 0-672-32525-X
-Original Message-
From: Brent Baisley [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, February 12, 2003 9:19 AM
To: Greg Luce
Cc: [EMAIL PROTECTED]
Subject: Re: [PHP] Learning PHP
Normally I don't recommend a SAMS book since I often find them lacking
depth. But I picked up"PHP and MySQL Web Devlopment" and actually
thought it very helpful. By chapter two you're reading and writing files
and by page 150 (of and 800+ page book) you're into object oriented
programming. It c
Greg --
...and then Greg Luce said...
%
% Could anyone recommend a fast track for learning php for an experienced
% ColdFusion developer? I'm working my way through the tutorials on
% php.net and free2code.net, but they seem pretty kindergarten. Any
% advice?
I had extensive perl experience as w
On Wednesday 12 February 2003 10:14 am, Greg Luce wrote:
> Could anyone recommend a fast track for learning php for an experienced
> ColdFusion developer? I'm working my way through the tutorials on
> php.net and free2code.net, but they seem pretty kindergarten. Any
> advice?
I think with your exp
Could anyone recommend a fast track for learning php for an experienced
ColdFusion developer? I'm working my way through the tutorials on
php.net and free2code.net, but they seem pretty kindergarten. Any
advice?
ers its really good, I do consult the manual a bit but am scared of
it
> :-)
>
> Hope that helped,
>
> -Ryan
>
>
>
>
>
> - Original Message -
> From: "Darren Edwards" <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Wednesday, May
I do consult the manual a bit but am scared of it
> :-)
>
> Hope that helped,
>
> -Ryan
>
>
>
>
>
> - Original Message -
> From: "Darren Edwards" <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Wednesday, May 22, 2002 4:
t;[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, May 22, 2002 4:17 PM
Subject: [PHP] Learning PHP
> hi ppl i am learning PHP and was wondering if there is a good book or web
> site that i could learn ALOT from. Not PHP.net coz the documentation is
> just too compl
hi ppl i am learning PHP and was wondering if there is a good book or web
site that i could learn ALOT from. Not PHP.net coz the documentation is
just too complex there for a beginner.
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
] Learning PHP
I'm started with PHP and I'm interested in find any place
with some docs and example code. Can anyone help me?
Thanks in advance.
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
m: "Victor Javier Martinez Lopez" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Saturday, April 20, 2002 8:40 AM
Subject: [PHP] Learning PHP
I'm started with PHP and I'm interested in find any place
with some docs and example code. Can anyone help me?
Thanks in
I started here it was pretty good, then ofcourse I bought a thick ass
book:
http://www.mysql.com/articles/ddws/index.html
R>
>I'm started with PHP and I'm interested in find any place
>with some docs and example code. Can anyone help me?
>
>Thanks in advance.
>
>
--__-
I'm started with PHP and I'm interested in find any place
with some docs and example code. Can anyone help me?
Thanks in advance.
http://www.webdesigns1.com/php
Jeff Oien
> Can someone please make a list of the best places to learn PHP as I have 6
> weeks of school holidays and I want to put the m to good use (i have the
> PHP reference guide from www.oreilly.com and i have the big ass document
> files from www.php.net)
To: [EMAIL PROTECTED]
Subject: [PHP] Learning PHP
Can someone please make a list of the best places to learn PHP as I have
6 weeks of school holidays and I want to put the m to good use (i have
the PHP reference guide from www.oreilly.com and i have the big ass
document files from www.php.net)
Can someone please make a list of the best places to learn PHP as I have 6 weeks of
school holidays and I want to put the m to good use (i have the PHP reference guide
from www.oreilly.com and i have the big ass document files from www.php.net)
-legokiller666-
http://www.StupeedStudios.f2s.com
On Tue, Jul 17, 2001 at 04:55:11PM +1000, Jason Rennie wrote:
> > > This approach worked pretty well with previous people i teached
> > > PHP, but they already had some sort of programming background.
> > > This guy hasn't. I find that he has some difficulties picking
> > > it up. And I have so
> > This approach worked pretty well with previous people i teached
> > PHP, but they already had some sort of programming background.
> > This guy hasn't. I find that he has some difficulties picking
> > it up. And I have some difficulties to further help him.
>
> Is he having problems with
: Jason Murray [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, July 17, 2001 12:28 AM
To: 'Raphael Steenbergen'; [EMAIL PROTECTED]
Subject: RE: [PHP] learning PHP from scratch
> This approach worked pretty well with previous people i teached
> PHP, but they already had some sort of progra
> This approach worked pretty well with previous people i teached
> PHP, but they already had some sort of programming background.
> This guy hasn't. I find that he has some difficulties picking
> it up. And I have some difficulties to further help him.
Is he having problems with PHP, or data
Hi,
I am teaching a fellow worker PHP. He is, like other 'students' I had working
on a small project with database interaction.
This approach worked pretty well with previous people i teached PHP, but they
already had some sort of programming background. This guy hasn't. I find that
he has so
51 matches
Mail list logo