Go Back   CodingForums.com > :: Server side development > PHP

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 03-29-2003, 04:14 AM   PM User | #1
Grant Palin
Regular Coder

 
Join Date: Jun 2002
Location: Victoria, BC, Canada
Posts: 962
Thanks: 0
Thanked 1 Time in 1 Post
Grant Palin is an unknown quantity at this point
Introductory PHP tutorials

I've been wanting to learn PHP for a while now. Can anyone suggest beginning tutorials for me? I have no knowledge of PHP, so it would have to start from the beginning.
Grant Palin is offline   Reply With Quote
Old 03-29-2003, 05:57 AM   PM User | #2
Spookster
Supreme Overlord


 
Spookster's Avatar
 
Join Date: May 2002
Location: Marion, IA USA
Posts: 6,220
Thanks: 4
Thanked 80 Times in 79 Posts
Spookster will become famous soon enough
Here is the official manual and php site:

http://www.php.net/

here is a partner company with many tutorials, examples, tips, etc:

http://zend.com/
__________________
Spookster
CodingForums Supreme Overlord
All Hail Spookster
Who gave you that Ugging infraction? Yeah that's right it was me!
Spookster is offline   Reply With Quote
Old 03-29-2003, 06:02 AM   PM User | #3
Phool
New Coder

 
Join Date: Mar 2003
Posts: 44
Thanks: 0
Thanked 0 Times in 0 Posts
Phool is an unknown quantity at this point
phpbuilder.com is one of the better help forums around

You should also download the entire PHP manual from the php.net site for reference.
__________________
LocalHoster.com
Your Price. Your Features. Your Hosting™
Phool is offline   Reply With Quote
Old 03-29-2003, 06:56 AM   PM User | #4
Grant Palin
Regular Coder

 
Join Date: Jun 2002
Location: Victoria, BC, Canada
Posts: 962
Thanks: 0
Thanked 1 Time in 1 Post
Grant Palin is an unknown quantity at this point
Also, are there any PHP learning books wirth reading? I'm the sort of person who likes to learn from reading books, so book recommendations would be welcome as well.
Grant Palin is offline   Reply With Quote
Old 03-29-2003, 10:09 AM   PM User | #5
Ökii
Regular Coder

 
Join Date: Jun 2002
Location: UK
Posts: 577
Thanks: 0
Thanked 0 Times in 0 Posts
Ökii is an unknown quantity at this point
no idea about bet beginner books - would recccommend

http://www.devshed.com/Server_Side/PHP/PHP101

those five tuts as a very basic start into PHP syntaxes and stuff.

You should note: recent builds of PHP will access variables in a different way than most tutorials state (well any over a few months old anyway)

If a variable is pulled from the URL it should nowadays be accessed by

$_GET['variable_name'] and not just $variable_name

form posted variables are $_POST['var_name']

and most server variables are $_SERVER['VAR_NAME'] - eg $PHP_SELF is now $_SERVER['PHP_SELF']
__________________
Ökii - formerly pootergeist
teckis - take your time and it'll save you time.
Ökii is offline   Reply With Quote
Old 03-29-2003, 01:06 PM   PM User | #6
stoodder
Regular Coder

 
Join Date: Oct 2002
Location: Milwaukee, Wisconsin
Posts: 123
Thanks: 1
Thanked 0 Times in 0 Posts
stoodder is an unknown quantity at this point
definetly!!:
http://robouk.mchost.com (whoops looks like robouk is down sry)
http://www.geocities.com/tipsforlinu.../037-php1.html
stoodder is offline   Reply With Quote
Old 03-30-2003, 09:26 PM   PM User | #7
duniyadnd
Regular Coder

 
Join Date: Jun 2002
Location: Depends on the time of year
Posts: 478
Thanks: 0
Thanked 0 Times in 0 Posts
duniyadnd is an unknown quantity at this point
it helps you with the basics, check out O'Reilly's book called:

Web Database Applications, with Php and MYSql.

This helps you with SQL as well, and guides you to creating a whole site selling wine...

Once you got the basics, and understood the php syntax, check out premade classes and learn what they did at

http://www.phpclasses.org

Don't forget

http://www.php.net for the ultimate resource on php.

Duniyadnd
duniyadnd is offline   Reply With Quote
Old 03-30-2003, 09:38 PM   PM User | #8
Nightfire
Senior Coder

 
Nightfire's Avatar
 
Join Date: Jun 2002
Posts: 4,266
Thanks: 6
Thanked 48 Times in 48 Posts
Nightfire is on a distinguished road
Also, if you're wanting to test the scripts on your pc, but daren't/don't know how to, set up a server, php and/or mysql, then you could get phpdev from here. It's all set up for you in that nice package
__________________
Blue Panda
Website Design | 1 Pound Ads | 'ow much? | Coding Geeks
Nightfire is offline   Reply With Quote
Old 04-01-2003, 03:49 AM   PM User | #9
Grant Palin
Regular Coder

 
Join Date: Jun 2002
Location: Victoria, BC, Canada
Posts: 962
Thanks: 0
Thanked 1 Time in 1 Post
Grant Palin is an unknown quantity at this point
Thanks for the tip on PHPDev...sounds neat, but I already have Apache and Perl installed, and have no interest in SQL (yet...). So, I'm just going to stick with HTML Kit as my web editor. It has features for PHP, so I guess I'll get a chance to try them out. Must start reading some tutorials first.
Grant Palin is offline   Reply With Quote
Old 04-04-2003, 07:56 PM   PM User | #10
Vinsar
New Coder

 
Join Date: Apr 2003
Location: Meerut, India
Posts: 13
Thanks: 0
Thanked 0 Times in 0 Posts
Vinsar is an unknown quantity at this point
To learn Php you will need the php itself first so get it at www.php.net,

Now get a good & free php ide from http://www.phpide.de/

Download php manual from www.php.net

There is one more place where you can have tutorials

http://www.spoono.com/tutorials/php/

The best thing you can have to test your scripts is Foxserv ( and ofcourse by getting this one you don't need to get any thing else to run/install) Foxserv is a Apache/MySql/Php installer for windows.

Go get it at www.foxserv.net
Vinsar is offline   Reply With Quote
Old 04-05-2003, 07:31 PM   PM User | #11
Grant Palin
Regular Coder

 
Join Date: Jun 2002
Location: Victoria, BC, Canada
Posts: 962
Thanks: 0
Thanked 1 Time in 1 Post
Grant Palin is an unknown quantity at this point
Thanks for the suggestions for PHP/Apache/SQL/Perl packages. But I already have Apache and Perl installed, so I see no need to do those again. That said, do I need to download something to be able to run PHP locally via Apache? Or do I need to do some configuring for Apache to get it to run PHP scripts?

p.s. I've downloaded the PHP manual from php.net. It looks very in depth.

Last edited by Grant Palin; 04-05-2003 at 07:42 PM..
Grant Palin is offline   Reply With Quote
Old 04-05-2003, 08:00 PM   PM User | #12
Nightfire
Senior Coder

 
Nightfire's Avatar
 
Join Date: Jun 2002
Posts: 4,266
Thanks: 6
Thanked 48 Times in 48 Posts
Nightfire is on a distinguished road
You need to download php from http://www.php.net/downloads.php
__________________
Blue Panda
Website Design | 1 Pound Ads | 'ow much? | Coding Geeks
Nightfire is offline   Reply With Quote
Old 04-05-2003, 08:12 PM   PM User | #13
Grant Palin
Regular Coder

 
Join Date: Jun 2002
Location: Victoria, BC, Canada
Posts: 962
Thanks: 0
Thanked 1 Time in 1 Post
Grant Palin is an unknown quantity at this point
Do I need to get the zip packacge, or the installer?
Grant Palin is offline   Reply With Quote
Old 04-05-2003, 08:14 PM   PM User | #14
Nightfire
Senior Coder

 
Nightfire's Avatar
 
Join Date: Jun 2002
Posts: 4,266
Thanks: 6
Thanked 48 Times in 48 Posts
Nightfire is on a distinguished road
I always got the zip package, coz there's more stuff included. It's not hard to set it up manually.
__________________
Blue Panda
Website Design | 1 Pound Ads | 'ow much? | Coding Geeks
Nightfire is offline   Reply With Quote
Old 04-05-2003, 08:59 PM   PM User | #15
Grant Palin
Regular Coder

 
Join Date: Jun 2002
Location: Victoria, BC, Canada
Posts: 962
Thanks: 0
Thanked 1 Time in 1 Post
Grant Palin is an unknown quantity at this point
Shucks, I already downloaded and ran the installer version. What's in the zip that's not included with the installer?
Grant Palin is offline   Reply With Quote
Reply

Bookmarks

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

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

Forum Jump


All times are GMT +1. The time now is 08:21 AM.


Advertisement
Log in to turn off these ads.