Good way to learn php?

Want to chit chat about anything, do it here ... posting here won't increase your post count (or shouldn't!). Please do not post any "phpBB" specific topics here unless they do not fit into the category above. Do not post bug reports, feature or support requests!
Forum rules
Please do not post any "phpBB" specific topics here unless they do not fit into the category above.

Do not post bug reports, feature or support requests! No really... Do not post bug reports, feature or support requests! Doing so will make Bertie a very sad bear indeed. :(
Yawnster
Registered User
Posts: 342
Joined: Sat Jan 29, 2005 9:18 pm
Location: London, UK
Contact:

Re: Good way to learn php?

Post by Yawnster »

I now have a copy of PHP Cookbook, its ok, but a bit advanced, as per any language there is always a set of commonly used instructions.. Loops, operators, functions, classes etc..

Many moons ago I taught myself UScript, (Used to program the Unreal Engines), this is a variant of C++, with a simular syntax it was easy to jump across.. It took me a while to get the whole, you-dont-need-to-compile thing.. but after this its became second nature and ive given up pretty much all other non-web languages..

As for how i learnt UScript.. Alot of hard work, reading and guess work, because documentation on it was pathetic at best...

Yawnster

Evolution_Graphics
Registered User
Posts: 3
Joined: Thu Sep 08, 2005 2:12 am

Re: Good way to learn php?

Post by Evolution_Graphics »

Would you say PHP is harder or easier to learn than HTML?

Yawnster
Registered User
Posts: 342
Joined: Sat Jan 29, 2005 9:18 pm
Location: London, UK
Contact:

Re: Good way to learn php?

Post by Yawnster »

Harder.. PHP is a programming language, thus it has a more complicated syntax, however it does have way more structured approach and there is only 1 way that things will work.. whereas HTML is hit and miss most of the time..

They both have their querks, but PHP due to its increased size..

Yawnster..

p3980
Registered User
Posts: 49
Joined: Tue Sep 06, 2005 2:29 pm

Re: Good way to learn php?

Post by p3980 »

An example of the length thing:
Me wrote: OK, let's say you want to make a page output Hello!... easy, right? Well, here is the PHP and HTML methods:

HTML:

Code: Select all

Hello!
PHP:

Code: Select all

<?php
echo "Hello!";
?>
Does that help?

Evolution_Graphics
Registered User
Posts: 3
Joined: Thu Sep 08, 2005 2:12 am

Re: Good way to learn php?

Post by Evolution_Graphics »

Yeah, that helps alot...
Thanks for the replies... ;)

User avatar
karlsemple
Registered User
Posts: 480
Joined: Mon Jan 23, 2006 8:49 am
Location: Hereford
Contact:

Re: Good way to learn php?

Post by karlsemple »

i learnt by reading a few books and then some trial and error......still learning too!

p3980
Registered User
Posts: 49
Joined: Tue Sep 06, 2005 2:29 pm

Re: Good way to learn php?

Post by p3980 »

I learned by diving into my custom CMS nose first, and just looking up commands when I needed them.

who_cares
Registered User
Posts: 218
Joined: Mon Feb 07, 2005 1:20 pm
Contact:

Re: Good way to learn php?

Post by who_cares »

I learned by MOD'ding phpbb

Post Reply