How to convert Exponentials to Decimals in PHP
A while ago I was experimenting on how long does it take for a plain page to load on my local server. The output I was receiving was so small that it was being displayed in exponential ...
How to display your twitter follower count using PHP
Got over 1000 followers on twitter? And you want to flaunt your twitter follower count proudly on your blog. The following PHP code is a PHP cURL code implementation to pull out ...
Including Files in PHP – Learn PHP in 7 Days – Day #6
Include Function
Including files bring more convenience in managing your code. As the name states, include is a function that will simply dump the contents of the included file into ...
Using Loops in PHP – Learn PHP in 7 Days – Day #5
Hope you are well versed with conditional statements in PHP. This time we are going to see how to work with looping structures. Looping structure are basically those statements which ...
Using Conditional Statements in PHP – Learn PHP in 7 Days – Day #4
This is one of the most important tutorial for php programming is dealing with Conditional Statements.
Let me first illustrate how does this work. For instance whenever you need to ...
Using Comments in PHP – Learn PHP in 7 Days – Day #3
Comments are those line which are not executed by the compiler. Comments in PHP are similar to comment in C or C++ or JAVA. Comments are the best way to explain the logic of an application. ...
