[HELP / PHP] What Is The Easyest Way To Learn PHP?

Junior Spellweaver
Joined
Sep 1, 2008
Messages
130
Reaction score
0
HI there,

I know you'll probarly think I'm spamming, or this thread is a waste of time but, I'm in the process of making websites, and me and a mate are putting togther a website or something to do. But the type of website we are going to make highly needs to be coded in PHP, and none of us know anything about PHP. So I need to learn PHP in order to get our website in development and have it published in about 2 - 4 months. So, if anyone knows how I could learn PHP easily, PLEASE tell me where I can learn it from.

Thanks'
YeImANutter
[Seniour Web Developer]
 
Buy a book, install a server, read tutorials / reference sites and learn by trail and error :).
 
open notepad, dreamweaver what ever and start playing... there is nothing like learning easy... nothing is learnt easy, if u dont try and try, fail and succede you'll never learn

people is so stupid this days...
 
I have a book by Dummies if you want it, PM me for the link. You could also use dreamweaver, which gives you the ease of drag and drop and then right click, and php commands are right there.

Just wondering if you could PM the link.
:)
\Im also trying to learn.
 
Thanks for all replyes, helped me out alot :D.

I've started PHP and I know the following things.
- Displaying Text with PHP script
Code:
<?php 
print "TEXT HERE.";
?>

- PHP Variables
Code:
 <?php 
$name = "YeImANutter";

print $name;
?>

- PHP Arrays (I think it's that :P)
Code:
<?php

@include("footer.inc.php");

?>

Im just learning now how to make a HTML & PHP form. :).


Regards'
YeImANutter
[Seniour Web Developer]
 
Back