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
Good way to learn php?
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. :(
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. :(
-
- Registered User
- Posts: 3
- Joined: Thu Sep 08, 2005 2:12 am
Re: Good way to learn php?
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..
They both have their querks, but PHP due to its increased size..
Yawnster..
Re: Good way to learn php?
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:PHP:Code: Select all
Hello!
Does that help?Code: Select all
<?php echo "Hello!"; ?>
-
- Registered User
- Posts: 3
- Joined: Thu Sep 08, 2005 2:12 am
- karlsemple
- Registered User
- Posts: 480
- Joined: Mon Jan 23, 2006 8:49 am
- Location: Hereford
- Contact:
Re: Good way to learn php?
i learnt by reading a few books and then some trial and error......still learning too!
Re: Good way to learn php?
I learned by diving into my custom CMS nose first, and just looking up commands when I needed them.