Sunday, June 3, 2012

PHP Multipurpose

Let’s say you wanted to construct your site so that it showed the visitor’s name at the top of every page. With our custom welcome message example above, we’re halfway there already. Here are the problems we’ll need to overcome to extend the example: We...

By PHP with No comments

PHP Control Structures Tips

All the examples of PHP code we’ve seen so far have been either simple, onestatement scripts that output a string of text to the Web page, or series of statements that were to be executed one after the other in order. If you’ve ever written programs...

By PHP with No comments

PHP User Interaction and PHP Forms

The ability to interact with users who view a Web page is essential for many applications of PHP. Veterans of JavaScript tend to think in terms of event handlers, which let you react directly to the actions of the user—for example, the movement of...

By PHP with No comments

PHP Arrays, Learn about Arrays

An array is a special kind of variable that contains multiple values. If you think of a variable as a box that contains a value, then an array can be thought of as a box with compartments, where each compartment is able to store an individual...

By PHP with No comments

Saturday, June 2, 2012

PHP Variables and PHP Operators

Variables in PHP are identical to variables in most other programming languages. For the uninitiated, a variable can be thought of as a name that’s given to an imaginary box into which any value may be placed. The following statement creates a variable...

By PHP with No comments

PHP Basic Syntax and PHP Commands

PHP syntax will be very familiar to anyone with an understanding of C, C++, C#, Java, JavaScript, Perl, or any other C-derived language. A PHP script consists of a series of commands, or statements. Each statement is an instruction that must be followed...

By PHP with 1 comment

What is PHP? Introduction about PHP

PHP is a server-side scripting language. This concept is not obvious, especially if you’re used to designing pages with just HTML and JavaScript. A server-side scripting language is similar to JavaScript in that it allows you to embed...

By PHP with No comments

How to start PHP, PHP Syntax to start?

PHP have simple tags to star and ends. PHP star tag is "<?php" and ending with "?>". We place PHP tags anywhere in our page. Normally HTML page have the tags of table or div. we will place any where we want to place PHP. PHP have the another...

By PHP with No comments

    • Popular
    • Categories
    • Archives