[advanced search]
 

Go Back   NamePros.com > Discussion > Web Design & Development > Programming

Programming PHP, Perl, Ruby on Rails, AJAX, HTML, XHTML, CSS, JavaScript, MySQL and any other coding topics.


Closed Thread
 
LinkBack Thread Tools
Old 08-16-2006, 11:39 AM   #1 (permalink)
Senior Member
 
dc1pop's Avatar
 
Join Date: Dec 2004
Location: UK
Posts: 1,894
110.80 NP$ (Donate)

dc1pop is a splendid one to beholddc1pop is a splendid one to beholddc1pop is a splendid one to beholddc1pop is a splendid one to beholddc1pop is a splendid one to beholddc1pop is a splendid one to beholddc1pop is a splendid one to beholddc1pop is a splendid one to behold


Learning PHP

Hi,

The time has come for me to learn PHP can anyone recommened a book that is full of advice and help for a newbie in the php field.

I know very little so need to start right at the begging.

Hope some people here can point me in the right direction!

Thanks,
Darren
__________________
applewave.com - web design & php development
dc1pop is offline  
Old 08-16-2006, 11:50 AM   #2 (permalink)
NamePros Member
 
Join Date: May 2006
Posts: 133
10.00 NP$ (Donate)

spacetrain will become famous soon enoughspacetrain will become famous soon enough


PHP & Mysql Web Development 3rd Edition

This covers PHP 5 and Mysql its a great book! It uses examples of scripts to help you learn various functions and at the end gives several step by step guides on how to build popular scripts like web mail scripts and a forum.

Using it and google and a friend who already knew php and mysql ive mastered php and mysql in little over a month

http://www.amazon.com/gp/product/0672326728
spacetrain is offline  
Old 08-16-2006, 12:46 PM   #3 (permalink)
Senior Member
 
dc1pop's Avatar
 
Join Date: Dec 2004
Location: UK
Posts: 1,894
110.80 NP$ (Donate)

dc1pop is a splendid one to beholddc1pop is a splendid one to beholddc1pop is a splendid one to beholddc1pop is a splendid one to beholddc1pop is a splendid one to beholddc1pop is a splendid one to beholddc1pop is a splendid one to beholddc1pop is a splendid one to behold


Well thanks for the information! Il check out that book now! What sites did you use??
__________________
applewave.com - web design & php development
dc1pop is offline  
Old 08-16-2006, 01:30 PM   #4 (permalink)
Dan
Buy my domains.
 
Dan's Avatar
 
Join Date: Feb 2006
Posts: 2,801
56.00 NP$ (Donate)

Dan has a brilliant futureDan has a brilliant futureDan has a brilliant futureDan has a brilliant futureDan has a brilliant futureDan has a brilliant futureDan has a brilliant futureDan has a brilliant futureDan has a brilliant futureDan has a brilliant futureDan has a brilliant future

Autism Autism Autism Autism Autism Autism Autism
I have the book that spacetrain suggested.

I hardly ever used it and learned the most by just trying to do things and looking up stuff on php.net
Dan is offline  
Old 08-19-2006, 08:29 AM   #5 (permalink)
NamePros Member
 
LikuiD's Avatar
 
Join Date: Jul 2006
Posts: 176
232.00 NP$ (Donate)

LikuiD is on a distinguished road


I've been learning php for quite a few days now just by looking at simply made scripts
I've even made my first script from scartch this morning (script that generates Meta Tags )
Php really isn't that hard, you just need to have someplace to test your scripts and alot of time to google

Nonetheless I'll still check out that book 'spacetrain' recommended
Good luck !
__________________
Coming Soon:
BackstagePrince.com, TenchuZ.net
LikuiD is offline  
Old 08-19-2006, 09:00 AM   #6 (permalink)
OK
NamePros Regular
 
Join Date: Nov 2005
Posts: 458
227.55 NP$ (Donate)

OK is just really niceOK is just really niceOK is just really niceOK is just really nice


I don't remember what book I used to start out (but it had a picture of the Linux penguin on the cover). REALLY helpful. Books > Sites. Although once you learn the basics, the internet becomes more helpful.
OK is offline  
Old 08-19-2006, 09:05 AM   #7 (permalink)
NamePros Regular
 
baxter's Avatar
 
Join Date: Apr 2006
Posts: 289
1,990.00 NP$ (Donate)

baxter is a jewel in the roughbaxter is a jewel in the roughbaxter is a jewel in the rough

Ethan Allen Fund Save The Children
Quote:
Originally Posted by Dan Friedman
I have the book that spacetrain suggested.

I hardly ever used it and learned the most by just trying to do things and looking up stuff on php.net
I did the same Dan, the book I had was called "Learn php in 24 hours"
baxter is offline  
Old 08-19-2006, 11:08 AM   #8 (permalink)
Senior Member
 
Join Date: Apr 2005
Location: Joliet, Illinois
Posts: 1,194
345.00 NP$ (Donate)

RageD is a splendid one to beholdRageD is a splendid one to beholdRageD is a splendid one to beholdRageD is a splendid one to beholdRageD is a splendid one to beholdRageD is a splendid one to beholdRageD is a splendid one to behold

Child Abuse
Search the Namepros forums.. Look at like webmaster articles and things and examine the code. Here is something very basic you can try, it's just working with variables: (It is a hello world, but it helps lol)

PHP Code:
<?php
// Define the '$hello' variable
$hello = "Hello World";
echo(
$hello);
?>
Everyone loves the Hello World lol but you can try other things with that. Also, with that one I would like to say, if you want to put text in there that is not a variable, you can do so. Just do something like this:

PHP Code:
echo("This is my first PHP script, $hello");
of course, that would replace the "echo" I left in the other script, otherwise $hello is not defined.

Also, another simple thing if you want to see your phpInfo

PHP Code:
<?php
phpinfo
();
?>
haha. Once you learn the basics, you can get into programming your own functions But get that done and it's like math. Everything builds!

-RageD

NOTE: PHP.net is a great reference guide!
__________________
New Programming Blog! (Both Web [PHP] and Platform [C/C++]!)
RageD is offline  
Old 08-19-2006, 01:48 PM   #9 (permalink)
Barru.
 
Barrucadu's Avatar
 
Join Date: Aug 2005
Location: East Yorkshire, England
Posts: 2,731
78.50 NP$ (Donate)

Barrucadu is a splendid one to beholdBarrucadu is a splendid one to beholdBarrucadu is a splendid one to beholdBarrucadu is a splendid one to beholdBarrucadu is a splendid one to beholdBarrucadu is a splendid one to beholdBarrucadu is a splendid one to behold


When I started I just looked at scripts other people had made, then had a go at making my own.
Barrucadu is online now  
Old 08-20-2006, 05:36 AM   #10 (permalink)
Senior Member
 
dc1pop's Avatar
 
Join Date: Dec 2004
Location: UK
Posts: 1,894
110.80 NP$ (Donate)

dc1pop is a splendid one to beholddc1pop is a splendid one to beholddc1pop is a splendid one to beholddc1pop is a splendid one to beholddc1pop is a splendid one to beholddc1pop is a splendid one to beholddc1pop is a splendid one to beholddc1pop is a splendid one to behold


Thanks guys its all good to get the information you recommened!

Thanks!
__________________
applewave.com - web design & php development
dc1pop is offline  
Old 08-20-2006, 06:16 AM   #11 (permalink)
Barru.
 
Barrucadu's Avatar
 
Join Date: Aug 2005
Location: East Yorkshire, England
Posts: 2,731
78.50 NP$ (Donate)

Barrucadu is a splendid one to beholdBarrucadu is a splendid one to beholdBarrucadu is a splendid one to beholdBarrucadu is a splendid one to beholdBarrucadu is a splendid one to beholdBarrucadu is a splendid one to beholdBarrucadu is a splendid one to behold


When you do start PHP, set up a testing server.

Abyss Web Server (free version) is a great webserver, if you look in the documentation it says how to add PHP support.
Barrucadu is online now  
Old 08-20-2006, 04:16 PM   #12 (permalink)
Dan
Buy my domains.
 
Dan's Avatar
 
Join Date: Feb 2006
Posts: 2,801
56.00 NP$ (Donate)

Dan has a brilliant futureDan has a brilliant futureDan has a brilliant futureDan has a brilliant futureDan has a brilliant futureDan has a brilliant futureDan has a brilliant futureDan has a brilliant futureDan has a brilliant futureDan has a brilliant futureDan has a brilliant future

Autism Autism Autism Autism Autism Autism Autism
If you want to run it on localhost [and on Windows], I suggest http://www.en.wampserver.com/

It comes with Apache, PHP, and MySQL. It has an addon which allows you to switch between PHP 4 and 5.
Dan is offline  
Old 08-20-2006, 06:21 PM   #13 (permalink)
NamePros Regular
 
ablaye's Avatar
 
Join Date: May 2006
Location: WebmasterGround.com
Posts: 837
0.00 NP$ (Donate)

ablaye is on a distinguished road


Quote:
Originally Posted by Mikor
When I started I just looked at scripts other people had made, then had a go at making my own.
That's also how i learnt PHP. I just looked at some scripts, made changes and got the answers to all my questions at www.php.net
ablaye is offline  
Closed Thread


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Site Sponsors
Advertise your business at NamePros

All times are GMT -7. The time now is 01:19 PM.


Powered by: vBulletin® Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.3.0
Template-Modifications by TMS
vBCredits v1.4 Copyright ©2007 - 2008, PixelFX Studios

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85