473,396 Members | 1,838 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

Best way to start learning...?

Alright, I need to learn PHP, but honestly I'm having trouble with some
of the online tutorials for two reasons:

1. They're incredibly dry and tend to just say what things do instead
of going in-depth into examples.
2. They don't provide me with excercises and projects in which to test
out what I've learned. The best books I've ever read on any form of
scripting, coding, programming, etc. give me tasks in which to use what
I've been taught. I only learn well by doing, not simply by being
presented with facts.

So... is there a site and/or a book (I'm willing to buy one if
necessary) that you would recommend for someone like me?

As a side note, a lot of them seem to put a lot of time and effort into
instructions on setting up PHP, Apache, and MySQL. I have a web host
that's already fully configured (and runs PHP as CGI, although Apache
is an available method that goes against their recommendation), so my
real needs are how to apply my work to that environment.

Thanks in advance,

Jarrett

Jan 24 '06 #1
6 1688
LJB
I really like the Visual Quickpro and Quickstart guides by Larry Ulman.
I have been using PHP and MySQL for quite a while and I still refer
to these books sometimes. You can check it out at amazon.

http://www.amazon.com/gp/product/032...lance&n=283155

TurboFool wrote:
Alright, I need to learn PHP, but honestly I'm having trouble with some
of the online tutorials for two reasons:

1. They're incredibly dry and tend to just say what things do instead
of going in-depth into examples.
2. They don't provide me with excercises and projects in which to test
out what I've learned. The best books I've ever read on any form of
scripting, coding, programming, etc. give me tasks in which to use what
I've been taught. I only learn well by doing, not simply by being
presented with facts.

So... is there a site and/or a book (I'm willing to buy one if
necessary) that you would recommend for someone like me?

As a side note, a lot of them seem to put a lot of time and effort into
instructions on setting up PHP, Apache, and MySQL. I have a web host
that's already fully configured (and runs PHP as CGI, although Apache
is an available method that goes against their recommendation), so my
real needs are how to apply my work to that environment.

Thanks in advance,

Jarrett

Jan 24 '06 #2
Message-ID: <11**********************@z14g2000cwz.googlegroups .com> from
TurboFool contained the following:
Alright, I need to learn PHP, but honestly I'm having trouble with some
of the online tutorials for two reasons:

1. They're incredibly dry and tend to just say what things do instead
of going in-depth into examples.
2. They don't provide me with excercises and projects in which to test
out what I've learned. The best books I've ever read on any form of
scripting, coding, programming, etc. give me tasks in which to use what
I've been taught. I only learn well by doing, not simply by being
presented with facts.


I have some course notes here for the first five lessons of an
introduction to PHP course I run. They contain examples and exercises.
http://www.ckdog.co.uk/phpcourse/1_i..._variables.doc
http://www.ckdog.co.uk/phpcourse/2_c...structures.doc
http://www.ckdog.co.uk/phpcourse/3_arrays_and_loops.doc
http://www.ckdog.co.uk/phpcourse/4%20functions.doc
http://www.ckdog.co.uk/phpcourse/5_persistence.doc

I'd welcome any feedback.

The editor I recommend is
http://www.flos-freeware.ch/notepad2.html
--
Geoff Berrow (put thecat out to email)
It's only Usenet, no one dies.
My opinions, not the committee's, mine.
Simple RFDs http://www.ckdog.co.uk/rfdmaker/
Jan 24 '06 #3
Following on from TurboFool's message. . .

Bookshops and libraries have plenty.

Select one that suits you.

Once you've got the feel of PHP then look at some more - you'll find
some major differences in programming style.

You will also find version 4 to 5 issues - Minor really but assume
you'll be 5-ing and think objects.


--
PETER FOX Not the same since the porcelain business went down the pan
pe******@eminent.demon.co.uk.not.this.bit.no.html
2 Tees Close, Witham, Essex.
Gravity beer in Essex <http://www.eminent.demon.co.uk>
Jan 24 '06 #4
I learned PHP by just getting out there and writing some program. I
remember I wrote a message board system out of PHP, which was a great
exercise: It utilized key topics in MySQL, loops, and many other
topics. You should try this out. Of course, it probably won't be a
message board that you'll want to use, but that's besides the
point--you want to learn PHP.

After each project that you do, try to utilize different methods until
you eventually get to OOP and beyond.

Jan 25 '06 #5
Just get a contract :)

Jan 25 '06 #6

TurboFool wrote:
Alright, I need to learn PHP, but honestly I'm having trouble with some
of the online tutorials for two reasons:

1. They're incredibly dry and tend to just say what things do instead
of going in-depth into examples.
2. They don't provide me with excercises and projects in which to test
out what I've learned. The best books I've ever read on any form of
scripting, coding, programming, etc. give me tasks in which to use what
I've been taught. I only learn well by doing, not simply by being
presented with facts.


I know one place with many tutes : http://tutorialized.com
(i hope its not the one troubling you :-) )
then there is http://phpfreaks.com

You may not want it but, for scripts there is http://hotscripts.com

I got PHP5 Unleashed by John Coggeshall and others from SAMS, but
again, it has no exercises, which is what you want.

You may try this: write at least a couple of scripts for every topic( I
know it is most difficult to imagine good examples when you are new to
the language - try doing in PHP something you have done in other web
development languages, if you have)

Then write common small applications - guest book, mail form, message
board etc.

Then make an e-store or a photo gallery or a copy of your favorite site
in PHP

I suggest you keep a plan ready - first two weeks one-two page scripts
, next few weeks five-ten page applications, next few weeks - real
world applications - if you get a book or a site that takes you along
that path, nothing like it.

Finally, make sure that you read the online PHP manual at
http://php.net and not only the one bundled with the software - because
the online manual has user contributed notes which are often quite good
and informative.

HTH,
JS

Jan 25 '06 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

9
by: Buster | last post by:
Hi, im about to start learning how to program in JAVA 2 and was wondering what software i should buy to learn the language. I have downloaded the software development kit 1.4 but find the DOS...
9
by: km | last post by:
Hi all, What is the best book to start with python ? i am have been working since 1 yr with Perl. kindly enlighten, thanks, KM
11
by: DrUg13 | last post by:
In java, this seems so easy. You need a new object Object test = new Object() gives me exactly what I want. could someone please help me understand the different ways to do the same thing in...
136
by: Matt Kruse | last post by:
http://www.JavascriptToolbox.com/bestpractices/ I started writing this up as a guide for some people who were looking for general tips on how to do things the 'right way' with Javascript. Their...
11
by: robbiebell22 | last post by:
I have been looking all over the internet on how to learn C# .net. I have read a couple of books, lots of forums, and tutorials, but i am still at a very big loss as far as trying to write my own...
9
by: julie.siebel | last post by:
Hello all! As embarrassing as it is to admit this, I've been designing db driven websites using javascript and vbscript for about 6-7 years now, and I am *horrible* at form validation. To be...
26
by: puzzlecracker | last post by:
It'd be interesting to compare the learning practices of c++ practitioners. I'll start with mine The C++ Programming Language C++ Primer Effective C++ More Effective C++ Effective STL The...
7
by: JAG CHAN | last post by:
Friends, I am trying to learn Python. It will be of great help to me if you let me know which one would be best editor for learning Python. Plese note that I would like to have multiplatform...
13
by: BK | last post by:
Our .Net team has just inherited a junior programmer that we need to get up to speed as quickly as possible. Unfortunately, his skill set is largely Access with some VB6 and ASP classic...
7
by: Gladen Blackshield | last post by:
Hello All! Still very new to PHP and I was wondering about the easiest and simplest way to go about doing something for a project I am working on. I would simply like advice on what I'm asking...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.