22 Apr, 2008

With tons of coding languages out there, it can be a rough road finding and choosing one! Well, I’m your guide for this marvelously marvelous journey! Have you ever even heard of PHP? If not, I fear you are sincerely missing out. PHP is a must know for you web developers; It’s what makes websites do what they do (Even showing this to you)! So hop on board and I will show you the seven wonders of PHP.
Read the rest of this entry »
22 Mar, 2008
In this tutorial I will explain:
•PHP Form processing…
•How to save and display someones name.
I assume you know:
•PHP Variables and Basic Functions…
•XHTML Forms.
Forms are the the first step to jazz up your website with PHP; They are a very simple way to include user-interactivity. To start, look at an XHTML Form [The part the user sees]:
Read the rest of this entry »
18 Nov, 2007
In this tutorial I will explain:
•What a Variable and String are…
•The purpose of a Variable and a String…
•And an Example of a Variable and a String.
A Variable is a place holder that holds a value (I.E. “John” or 42). Once you set a Variable, you can use it over and over in your PHP script. Every single variable in PHP starts with a $ sign. The correct way of setting (Declaring) a variable in PHP is exampled in the following script:
Read the rest of this entry »
16 Nov, 2007
In this tutorial I will explain:
•Opening and closing tags of PHP…
•Other basic tags…
•And an example of a PHP page.
The only way of starting a PHP script is to first type <?php. The content goes in between that tag and the ending tag which is, ?>.
Read the rest of this entry »
16 Nov, 2007
In this tutorial I will explain:
•What PHP is…
•What PHP does…
•And some common questions about PHP.
PHP stands for Hypertext PreProssesor.
PHP is basically a server-side scripting language used to create dynamic, interactive and fun websites, that can fulfill any needs possible.
Read the rest of this entry »