
12-16-2011, 06:42 PM
|
|
Newbie
|
|
Join Date: Aug 2009
Location: Skokie, Illinois
Posts: 29
|
|
The best place for help would be http://w3schools.com/
|

01-07-2012, 08:49 AM
|
|
Newbie
|
|
Join Date: Dec 2011
Posts: 10
|
|
Very nice tutorial, I'm wanting I start coding PHP this is a great help thank you 
|

01-20-2012, 08:52 AM
|
|
Newbie
|
|
Join Date: Nov 2011
Posts: 19
|
|
Hi,
Thank for such a awesome short tutorial,I am seriously going to learn php at last.Do you recommend me any website or ebook for Advanced learning, Video tutorial will be best for me.
Thank you
|

01-20-2012, 12:04 PM
|
|
Premium Member
|
|
Join Date: Aug 2003
Location: Taiwan
Posts: 750
|
|
Quote:
Originally Posted by HobsonsChoice
Hi,
Thank for such a awesome short tutorial,I am seriously going to learn php at last.Do you recommend me any website or ebook for Advanced learning, Video tutorial will be best for me.
Thank you
|
http://www.php.net/download-docs.php 
|

01-22-2012, 01:45 AM
|
|
New Member
|
|
Join Date: Jan 2012
Posts: 4
|
|
I have been learning php for sometime now and this tutorial is so good for starters
|

02-15-2012, 09:34 AM
|
|
Newbie
|
|
Join Date: Feb 2012
Location: United Kingdom
Posts: 13
|
|
Thanks for this small guide, it's helped me further understand some aspects of PHP, I'm still a newbie at this, and I'm hoping to develop using simplistic guides & the use of the php.net manual -- That's great.
Thanks,
Chris.
|

02-16-2012, 07:52 AM
|
|
New Member
|
|
Join Date: Feb 2012
Posts: 4
|
|
Comma concatenation is often overlooked, in my opinion.
If working with large blocks of text it can reduce the load somewhat.
Example:
PHP Code:
<?php
echo $var1 . $var2 . $var3;
?>
Is a lot slower than:
PHP Code:
<?php
echo $var1 , $var2 , $var3;
?>
|

02-16-2012, 08:01 AM
|
|
WHT Addict
|
|
Join Date: Nov 2011
Posts: 153
|
|
Quote:
Originally Posted by Elev8
Comma concatenation is often overlooked, in my opinion.
If working with large blocks of text it can reduce the load somewhat.
|
NOTE: Comma concatenation only works with echo
if you use print you will get a syntax error message
|

02-16-2012, 09:23 AM
|
|
New Member
|
|
Join Date: Feb 2012
Posts: 4
|
|
Quote:
Originally Posted by _GMF_
NOTE: Comma concatenation only works with echo
if you use print you will get a syntax error message
|
^Very good point which I completely forgot about!
It also really only effects variables containing large amounts of text, HTML, or something similar.
|

02-17-2012, 08:46 AM
|
|
WHT Addict
|
|
Join Date: Apr 2010
Posts: 102
|
|
Thanks for reminding me php..  I an so focus with networking.. I think i need to read back and experiment again with php .. Thanks!
|

02-23-2012, 03:58 AM
|
|
Web Hosting Master
|
|
Join Date: May 2005
Posts: 965
|
|
Quote:
Originally Posted by Elev8
Comma concatenation is often overlooked, in my opinion.
If working with large blocks of text it can reduce the load somewhat.
|
Technically, that's b/c it's not a concatenation. Just echoing one after the other.
It would have the same performance as
echo var1;
echo var2;
echo var3;
|

02-29-2012, 01:03 AM
|
|
Newbie
|
|
Join Date: May 2010
Posts: 9
|
|
PHP stood for "Personal Home Page" until the end of PHP version 3 or so, when Zend took over the majority of it's development. Presently it's the recursive acronym "PHP: Hypertext Preprocessor", or something like that.
As far as learning PHP, once I had the basics of the language down I started looking at some commonly used open source projects such as PhpMyAdmin, PhpSysInfo, and Wordpress. I tried to think of a very simple fix/refactor/new feature and I spent a weekend trying to implement it.
|

04-11-2012, 10:17 AM
|
|
Junior Guru Wannabe
|
|
Join Date: Apr 2012
Location: United Kingdom
Posts: 39
|
|
Fantastic tutorial! Took me a while to read but it was well worth it.
Thank you very much,
Phil
|

04-23-2012, 04:13 AM
|
|
New Member
|
|
Join Date: Apr 2012
Posts: 0
|
|
Major thanks for the article. Will read on...
|
| Thread Tools |
Search this Thread |
|
|
|
| Display Modes |
Linear Mode
|
| Postbit Selector |
|
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
|
|
|
| Login: |
|
|
| Advertisement: |
|
|
| Web Hosting News: |
|
|
|