Warrior Forum - The #1 Digital Marketing Forum & Marketplace

Warrior Forum - The #1 Digital Marketing Forum & Marketplace (https://www.warriorforum.com/)
-   Programming (https://www.warriorforum.com/programming/)
-   -   PHP (https://www.warriorforum.com/programming/135089-php.html)

bigcat1967 16th October 2009 08:40 PM

PHP
 
I need to learn PHP - how do I start out and what do I need?

Bruce Hearder 17th October 2009 09:00 PM

Re: PHP
 
You can learn PHP programming without spending a cent. All you have to do is go down to your local local library and get a few books on PHP.

Then go to http://www.apachefriends.org/en/index.html and download yourself a copy of XAMPP!

This will let you setup a development platform for local testing.
It will install a copy of :
Apache web server,
PHP,
MySQL plus phpMyAdmin

Using this lot, you can develop away to your hearts content.

I hope this helps

Bruce

Steven Fullman 19th October 2009 10:29 AM

Re: PHP
 
If you're a visual learner, Leigh Mac over at PHP Video Tutorials - Like to watch the video instead of reading the book? has some great free (and paid for) videos. He actually manages to make PHP entertaining!

HTH,
Steve

TristanPerry 19th October 2009 11:31 AM

Re: PHP
 
Whilst you can learn 100% for free online, I personally recommend buying a book, especially if you haven't done any scripting language before.

PHP can be tricky at first and there's a lot to take in; hence why I recommend learning it via a book.

devilishsaint 19th October 2009 11:34 AM

Re: PHP
 
i think w3schools is also having good resources about php you should start from beginner level and move on.

shaddai 19th October 2009 09:02 PM

Re: PHP
 
I got a book...and learned enough to be dangerous. At that point I just decided I was going to code a project & when I ran into something I didn't know how to do, I just went googling to find out.

Some people just have to learn by actually doing it, and I'm one of them.

Todd

TristanPerry 20th October 2009 12:28 AM

Re: PHP
 
Quote:

Originally Posted by shaddai (Post 1296928)
I got a book...and learned enough to be dangerous. At that point I just decided I was going to code a project & when I ran into something I didn't know how to do, I just went googling to find out.

Some people just have to learn by actually doing it, and I'm one of them.

Todd

I was the same :) A book can teach you quite a lot, but you also need to then go out and create some basic scripts too (as some of the books do suggest, to be fair)

lolito 20th October 2009 07:18 AM

Re: PHP
 
Quote:

Originally Posted by bigcat1967 (Post 1288303)
I need to learn PHP - how do I start out and what do I need?

Just follow those suggested by our Warriors here, just read the book about PHP while you reading just type the source code in to your PC to easy understand how does PHP works. ;)

AndyBlackSEO 21st October 2009 12:57 AM

Re: PHP
 
I agree with Todd. Buy a couple of different books. Say a reference type book and one that has basic scripts, fuctions and tutorials. Then start from the bootom up. Once you have learnt some of the basics (a matter or hours / days) just use what you have learnt to write a couple of your own scripts. It doesn't matter what these scripts do, as long as you write them and they work.

Then keep learning more. Expect some headaches along the way but when you solve a problem or find an error it's a good feeling.

Make sure you have error reporting enabled.

Good luck.

SimonFairbairn 21st October 2009 05:04 AM

Re: PHP
 
I third Andy and Todd - books are a good starting point. I like the PHP/MySQL bible, but even the PHP for Dummies books are pretty decent.

Also, the Lynda dot com training videos are really good - lots of good practice and their latest ones are all about the Object Orientated Programming.

Abook or a training course is a lot more structured than reading a bunch of websites - but set up a testing server on your local machine like Bruce said as soon as possible and get started.

As for websites, w3schools is a good starting point, and net dot tutsplus dot com often have well written, comprehensive tutorials.

Programming PHP and MySQL is a lot of fun! Good luck!

Si

ninjawarrior 21st October 2009 10:15 AM

Re: PHP
 
I'd go with shaddai's approach. You learn a lot about php by actually doing it, I believe.

Makes me reflect how much learning php is actually very close to learning IM, the 'learning via doing' route.

Hope that helps.

Ross Dalangin 21st October 2009 10:24 AM

Re: PHP
 
Do you have a background in Programming? Try to visit w3schools.com and buy a PHP book on the nearest bookstore on your town. After that, install XAMPP of apache friends so that you have PHP, Apache and Mysql on your PC to test what you've learned on the book.

jackgunale 22nd October 2009 11:47 AM

Re: PHP
 
if you want to learn PHP,you can visit more site related put keyword PHP in search engine of google , you will get e-book and site also,,i also done this like there will be get tutorial.

thanks

RichPirate 22nd October 2009 03:19 PM

Re: PHP
 
Check out the "Learning" series of books published by O'Reilly. "Learning PHP" is good and takes you step by step through the process.

munkyscripts 24th October 2009 10:56 AM

Re: PHP
 
the php website helped me a ton, just looking thru their examples

Steve Wells 24th October 2009 01:48 PM

Re: PHP
 
There are some great tutorials on this website....

Here..

e.calabio 6th November 2009 03:42 AM

Re: PHP
 
What code is used to make a visitor counter in php? I'm not sure what it's called, a counter that holds the number of all visitors who went to your website.

Gimme4Free 6th November 2009 09:17 AM

Re: PHP
 
This is the one you want:
Learning PHP, MySQL, and JavaScript - O'Reilly Media

Absolutely awesome guide, will get you from PHP newbie to an advanced coder in no time at all.

RedEvo 6th November 2009 10:14 AM

Re: PHP
 
have you tried W3Schools?

d

Gary Smith 6th November 2009 10:45 AM

Re: PHP
 
Three tips:

1. If you are using MySQL with your programming learn about mysql_real_escape_string() and use it on all user supplied data. See PHP Security Consortium: PHP Security Guide: Databases and SQL

2. Always encrypt passwords and generate a new password from your 'lost password' page. If passwords are encrypted then they are pretty much useless to a hacker.

3. Learn about session hijacking and session fixation. See PHP Security Consortium: PHP Security Guide: Sessions

That's really only scraping the surface, but being mindful of security while you are learning will definitely help in the long term. There are plenty of good texts and tutorials on the internet that cover PHP scripts and how to make them more secure.

AndyBlackSEO 6th November 2009 05:58 PM

Re: PHP
 
Quote:

Originally Posted by e.calabio (Post 1357178)
What code is used to make a visitor counter in php? I'm not sure what it's called, a counter that holds the number of all visitors who went to your website.

You can get free counters from the web but generally this can be coded very easily with php. You would basically set up a mysql database and create a table with a couple of field. You could add more fields if you wanted to store more information about the visitor, ie - date, time, browser, IP etc.

You'd then just write a bit of php that would (at minimum) increment the count in the database and update it. With every refresh it would retrieve the current count and display it on screen.

To count only unique visits you could add the users IP to another database table and query that with each refresh to check whether the users IP already exists in that table before incrementing.

The possibilities are endless.

llamafier 7th November 2009 07:49 AM

Re: PHP
 
I learned from this book and thought it was really great. There wasn't a bunch of crap to read through it just got to the point of things.

Title: PHP 5 Fast & Easy Web Development

Won't let me link cause of post count so you'll have to Google it. :)

NinjaTech 7th November 2009 11:04 AM

Re: PHP
 
i use echo echo and monkeyforums These are how i learned.
But truly its best to come up with an idea you want to use a database for
a contact list or organize your dvds or movies.
make a project you will have fun with. that will encourage you to learn. and push yourself.

childtalent 9th November 2009 02:44 AM

Re: PHP
 
go to php.net

there are some pretty good information over there

Snowblind 9th November 2009 08:42 PM

Re: PHP
 
Once you've learnt the basics the best way to get going with PHP is to just start coding basic stuff. As you do that & get more and more advanced scripts you'll find you learn a lot by just searching through and using the PHP manual. The manual is available here: php.net/manual/en/

trumpetblast 9th November 2009 10:53 PM

Re: PHP
 
Someone earlier mentioned the PHP video tutorials website by Leighmac (link above or Google it: I can't link yet :)

That's an excellent site which actually has 15 or 20 free lessons on it. Well worth your time and an easy way to get started.

After that I'd also recommend picking out a project for yourself and just doing it. The best way to learn is to make tons of mistakes, figure out what the errors are, and then promise yourself you'll never pull your hair out by making that particular one again!

Seriously, that's the one problem with books and tutorials: they can never drill home the point like doing something for yourself and wading through all the mistakes to finally get something working right.

morgano1132 11th November 2009 04:08 PM

Re: PHP
 
First of all you need to strong your basics it means you should do prctice of html and css first and then you can learn php easily,

Thanks,

Hans123 12th November 2009 02:02 AM

Re: PHP
 
We have a duplicate board at http://www.warriorforum.com/programm...asy-learn.html

My recommendations:

1. Before you start with php, you need to understand html. A good starting point is W3Schools Online Web Tutorials as mentioned by other. Don't get distracted by the other tutorials at the site - Learn the basic HTML before moving on.

2. Get the php developer tools, server and basic training for FREE from Eclipse PHP Development Tools - Zend.com - Use their training and sample along with additional php training from w3schools. That should bring you up to speed without any expenses.

3. Thereafter you can consider advanced courses or books.

4. Then contact me. I always have work for php programmers and a veriety of freelancers :)

Good luck - Good php programmers are always in demand

PS: Don't waste time with ASP. I will never use ASP again for any site

jacobycage 5th October 2010 05:07 PM

Re: PHP
 
If you ask me Just follow those optional by our Warriors here, just read the book about PHP while you reading just type the source code in to your PC to easy appreciate how does PHP mechanism.

adammacbell 5th October 2010 06:27 PM

Re: PHP
 
I think you should keep making the tutorials. Your method of teaching is one that is very well orientated towards self education and forcing the student to go out a find the answer as opposed to handing it to them. You can also learn from online on w3schools websites.

zeeshi570 6th October 2010 11:35 AM

Re: PHP
 
You can learn php only by practice

lucasdean123 15th October 2010 12:40 AM

Re: PHP
 
You can discover PHP programming without expenditure a centime. All you have to do is go down to your local library as well as get a elite books on PHP.

james911 17th October 2010 05:56 AM

Re: PHP
 
you need tow of them: apache server + php 5

caesargus 17th October 2010 04:42 PM

Re: PHP
 
I would agree with the book route. There are plenty of excellent tutorials out on the net. I would look into video training if you learn better that way. I would check out the Head First Series of books. SitePoint.com and php.net are among my favorite resources.

iamjohnbrown 18th October 2010 04:10 AM

Re: PHP
 
If you want to learn about PHP, I think you should first start with the basics. Go to w3c Schools website and learn some basics. After that you can start to code some simple programs in PHP and after that you can post your doubts in this forum and we can help you out :)

smorhaim 18th October 2010 02:35 PM

Re: PHP
 
1. Download an install MAMP, WAMP or one of those.
2. Go find a nice Hello World tutorial
3. Start expanding.

php is the best language.. easy to learn, easy to code.

leppozdrav 5th August 2011 01:54 PM

Re: PHP
 
Php is good when you need to get the technical aspects of a function and need to learn how it works, but if you're just starting on php you cant really learn much from php.net thats my experience, but of course its good to have it in the backhand if yuo need to get info about functions!


All times are GMT -6. The time now is 06:42 AM.