By admin at January 8th, 2010 | 22 Comments
Written By, Grace Smith is owner of the small but perfectly formed web design studio Postscript5, in Northern Ireland.
PHP is a scripting language that enables people to create dynamic web pages and applications. It is a server side language that is one of the most popular used by developers today. Like any language there is always something new to learn and master.
With a large number of web developers on Twitter, it’s with no surprise that PHP was chosen as this week’s Theme Thursday theme.
Whether it be a new tip to better organize your code or a way to speed up your scripts, this list hopes to be essential reading for both the PHP newbie and the the experienced developer.
For Beginners
25 Resources to Get You Started with PHP from Scratch
PHP for ...
READ MORE...
By admin at November 14th, 2008 | 0 Comments
In before to share my today's learning, I would like to say thanks you emran bro (who gave me this awesome link) and big-big hug to vikram vaswani who wrote and excellent tutorials in a good sequence and adding delicious items on his first part "down the rabbit hole" tutorials. Shortly, I'll move forwards.I learned the basic actions of variable, how actually variable works, boolean, string, integer, floating-point and example of market value. I also read the briefly types on php language types (main page only and I have some problem on that example -i'll digg more). Thing is that you can't stop to reading the PHP manual and it's so helpful in different times. Don't follow me - i would like to follow you.Today bit tired to pressing "shift+$". ...
READ MORE...
By admin at November 12th, 2008 | 0 Comments
In before I wrote about the php date execution errors at the first test. Now, what to do? I asked about this matter to Emran bhai and got a simple solution. Just use this codes <?php echo date("m-d-Y", time()); ?>. Both are showing same results. Enjoy
READ MORE...
By admin at November 9th, 2008 | 1 Comment
At beginning, one of my friend said to me, " I should read the PHP Manual". But, I found on Chapter 2: A Simple Tutorial they said, "...We have an if statement. If you are familiar with the basic syntax used by the C language, this should look logical to you. Otherwise, you should probably pick up an introductory PHP book and read the first couple of chapters, or read the Language Reference part of the manual.". Hope you got my points.However, on chapter they introducing with variables.<?php echo $_SERVER['HTTP_USER_AGENT']; ?> On that codes you will see $_SERVER is a variable and that will handle PHP automatically. After the execution you will see Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.3) Gecko/2008092417 Firefox/3.0.3Note that the result will be vary and ...
READ MORE...
By admin at November 8th, 2008 | 0 Comments
I have been trying to find out this error In my first PHP code execution. Don't get any solutions but got some theoretical idea how actually everything working to execute the dates.
If the syntax is perfect and the parsing that means the processing engine can read the codes that should be execute instantly to web server.
echo function which is not a function but it sending string data to browser to show the today's date and the code is echo $todaysdate;
The date function is already built-in and that will do the rest of works automatically and on Dave's book I read, "
The date() function is built in to PHP, meaning that you don't have to write or copy the function into your PHP5 program; it's simply there for you ...
READ MORE...