Yellowworld.org Forums |
|
|||||||
| Technology Love your technology, just don't *love* your technology. |
![]() |
|
|
Thread Tools | Display Modes |
|
#1
|
||||
|
||||
|
Where is the best place to begin learning PHP?
I began looking at the manual at PHP.net, but they start to abruptly... I think that it wasn't meant for total beginners. So are there any tutorial sites or good books you recommend? I am using pmachine as my blogging engine on my site right now... and I feel too restricted because I don't know how to modify any of the php code. |
|
#2
|
||||
|
||||
|
Re: Igniting the PHP
QUOTE:
__________________
achtungbaby.net |
|
#3
|
||||
|
||||
|
Re: Igniting the PHP
I'd like to know what all the variables and code language actually means, so I can actually read the code that's going on my site. For example:
if (isset($HTTP_COOKIE_VARS['id'])) { setcookie("id","",time()-60,"/","","0"); $HTTP_COOKIE_VARS['id'] = 0; } if (isset($HTTP_GET_VARS)) { while(list($var,$val)=each($HTTP_GET_VARS)) { $$var=$val; } } if (isset($HTTP_POST_VARS)) { while(list($var,$val)=each($HTTP_POST_VARS)) { $$var=$val; } } if (isset($HTTP_SERVER_VARS)) { while(list($var,$val)=each($HTTP_SERVER_VARS)) { $$var=$val; } } Right now I have to download other people's scripts and use it. The first project I'd like to attempt is to make my own guestbook (or maybe even start with a simple shoutbox). Obviously you've had a lot of experience with PHP, I'm guessing? Where'd you first start? |
|
#4
|
||||
|
||||
|
Re: Igniting the PHP
QUOTE:
Oh yeah, re: above...the setcookie function is for creating and setting cookie variables, etc...
__________________
achtungbaby.net |
|
#5
|
||||
|
||||
|
Re: Igniting the PHP
i read kevin yank's book. from sitepoint.
Build Your Own Database Driven Website Using PHP & MySQL By Kevin Yank http://www.sitepoint.com/books/phpmysql1/
__________________
i am the fun. |
|
#6
|
||||
|
||||
|
Re: Igniting the PHP
QUOTE:
__________________
achtungbaby.net |
![]() |
| Thread Tools | |
| Display Modes | |
|
|