The net's largest PHP, CGI, Perl, JavaScript and ASP script collection and resource web portal
  New Listings
New Listings
Most Popular
Most Popular
Top Rated
Top Rated
Discussion
Discussion
Link to Us!
Link To Us
Search For:         
   
 
Sponsors


Categories

Ajax
ASP
ASP.NET
C and C++
CFML
CGI and Perl
Flash
Java
JavaScript
PHP
Python
Remotely Hosted
Ruby on Rails
Tools and Utilities
Web Hosting
XML

Sponsor Links


Home :: PHP :: Tips and Tutorials :: Introduction to PHP
Sort Listings By:       Click if you want to be notified of new or updated links in this category
  Total: 145    Displaying: 61 - 80 Pages:   1 2 3 4 5 6 7 8

   Single And Double Quotes   Hits: 411 

 
The basic use of single and double quoted strings in PHP, which to use when and the general difference between the two.


Version: n/a   Platform(s): n/a   Updated: Thu Jun 28 2007

Listing Details
Visit
Refer
PDF
  Member Reviews (0) Visitor Ratings

   PHP: Looping Statements   Hits: 384 

 
PHP performs several types of repetitive operations, called "looping". Loops are set of instructions used to repeat the same block of code till a specified condition returns false or true depending on how you need it. This tutorial shows the basic idea on how to use looping statements in PHP, along with examples, and descriptions of the examples.


Version: n/a   Platform(s): n/a   Updated: Fri Jan 26 2007

Listing Details
Visit
Refer
PDF
  Member Reviews (0) Visitor Ratings

   Starting out with PHP   Hits: 304 

 
So, you've mastered HTML and JavaScript. I guess the next stage is PHP! Don't worry. It isn't too hard. This tutorial is great for learning PHP right from the beginning teaching you all the basics to help you advance quickly on to more advanced concepts.


Version: n/a   Platform(s): linux, windows, freebsd, osx, sun   Updated: Wed Nov 29 2006

Listing Details
Visit
Refer
PDF
  Member Reviews (0) Visitor Ratings

   PHP: Functions   Hits: 589 

 
A function is a block of code which can be called from any point in a script after it has been declared. It is basically a compartmentalized PHP script designed to accomplish a single task. Functions are useful because they contribute to rapid, reliable, error-reducing coding, and increase legibility by tiding up complicated code sequences.


Version: n/a   Platform(s): n/a   Updated: Sat Oct 21 2006

Listing Details
Visit
Refer
PDF
  Member Reviews (0) Visitor Ratings

   PHP: Multidimensional Arrays   Hits: 788 

 
Array does not have to be a simple list of keys and values; each array element can contain another array as a value, which in turn can hold other arrays as well. This way, you can create a multi-dimensional array. In this article principles of using multidimensional arrays are explained and source code defining multidimensional array and displaying the array values on the web page is given.


Version: n/a   Platform(s): n/a   Updated: Wed Oct 11 2006

Listing Details
Visit
Refer
PDF
  Member Reviews (0) Visitor Ratings

   How to Sort an Array in PHP   Hits: 725 

 
It is often necessary to arrange the elements in an array in numerical order from highest to lowest values (descending order) or vice versa (ascending order). If the array contains string values, alphabetical order may be needed. Sorting a one-dimensional arrays is quite easy.


Version: n/a   Platform(s): n/a   Updated: Tue Oct  3 2006

Listing Details
Visit
Refer
PDF
  Member Reviews (0) Visitor Ratings

   How to connect to MySQL database using PHP   Hits: 1044 

 
Before you can get content out of your MySQL database, you must know how to establish a connection to MySQL from inside a PHP script. To perform basic queries from within MySQL is very easy. This article will show you how to get up and running.


Version: n/a   Platform(s): n/a   Updated: Fri Sep 29 2006

Listing Details
Visit
Refer
PDF
  Member Reviews (0) Visitor Ratings

   PHP Arrays   Hits: 618 

 
Arrays can be used in many ways to store and organize data quickly and efficiently. It is one of the more useful data types available to any programming language. This article describes the basics to create and make operations with indexed, associative, and multidimensional arrays.


Version: n/a   Platform(s): n/a   Updated: Fri Sep 29 2006

Listing Details
Visit
Refer
PDF
  Member Reviews (0) Visitor Ratings

   Conditional Statements in PHP   Hits: 773 

 
Sometimes when you write code, you want to perform different actions for different decisions. You can use conditional statements in your code to do this. In this tutorial we will look at two structures: if...else and switch statements.


Version: n/a   Platform(s): n/a   Updated: Fri Sep 22 2006

Listing Details
Visit
Refer
PDF
  Member Reviews (0) Visitor Ratings

   PHP Script Tips - Understanding String Literals and Operations   Hits: 728 

 
A collection of 14 tips on PHP string literals, operations and conversaion. Clear explanations and tutorial exercises are provided on single-quoted strings, double-quoted strings, string elements, concatenation, converting values to strings, converting strings to values: What Are the Special Characters You Need to Escape in Quoted Stings? Can You Specify the "new line" Character in Single-Quoted Strings? How Many Escape Sequences Are Recognized in Quoted Strings? How Many Escape Sequences Are Recognized in Double-Quoted Strings? How To Include Variables in Double-Quoted Strings? How Many Ways to Include Variables in Double-Quoted Strings? How Many Ways to Include Array Elements in Double-Quoted Strings? How To Access a Specific Character in a String? How To Assigning a New Character in a String? How To Concatenate Two Strings Together? ......


Version: n/a   Platform(s): linux, windows, freebsd, osx, sun   Updated: Sat May 27 2006

Listing Details
Visit
Refer
PDF
  Member Reviews (0) Visitor Ratings

   Sending Email With PHP   Hits: 1916 

 
Basic introduction to the mail() function and testing if email was sent.


Version: n/a   Platform(s): n/a   Updated: Sun Feb  5 2006

Listing Details
Visit
Download
Refer
PDF
  Member Reviews (0) Visitor Ratings

   PHP Basics: Introduction to Scalar Variables   Hits: 1227 

 
Other tutorials here may focus on getting a specific task done, but at the core of any language is syntax that must be learned and understood if you are ever to progress in it. This is what I hope to explain to you about the PHP language.


Version: n/a   Platform(s): n/a   Updated: Sun Feb  5 2006

Listing Details
Visit
Download
Refer
PDF
  Member Reviews (0) Visitor Ratings

   Basic PHP Includes   Hits: 1066 

 
This article introduces you to php includes. Lets say you have a Web site with 10 or so pages, and you want to update the navigation. You don’t want the hassle of updating every single page. That’s where php includes come in handy.


Version: n/a   Platform(s): linux, windows   Updated: Fri Feb  3 2006

Listing Details
Visit
Download
Refer
PDF
  Member Reviews (0) Visitor Ratings

   Playing with Numbers in PHP   Hits: 450 

 
This is a very simple tutorial that outlines the four main mathematical functions and how to use them. Clearly written with the ability to ask questions afterwards.


Version: Final   Platform(s): linux, windows, osx   Updated: Wed Feb  1 2006

Listing Details
Visit
Refer
PDF
  Member Reviews (0) Visitor Ratings

    Classes and OOP in PHP   Hits: 1188 

 
This tutorial is a starting point to Object orientated programming (OOP) which is a commonly used term when discussing modern programming techniques. One of the things that makes humans stand out is the ability to categorise - we put objects into categories of similar type of function.


Version: n/a   Platform(s): linux, windows   Updated: Tue Jan 31 2006

Listing Details
Visit
Download
Refer
PDF
  Member Reviews (0) Visitor Ratings

   PHP's 'IF' statement - Part 2   Hits: 495 

 
The 'if' statement is vital in order to produce good quality PHP. This tutorial goes slightly further into its use and details some more error-stopping ideas.


Version: Final   Platform(s): linux, windows, osx   Updated: Thu Jan 19 2006

Listing Details
Visit
Refer
PDF
  Member Reviews (0) Visitor Ratings

   PHP's 'IF' statement - Part 1   Hits: 492 

 
The 'if' statement is vital in order to produce good quality PHP. In this tutorial, I hope to explain the details and give you a basic insight into constructing good scripts. There is also a second part, which goes into a little more detail with some further trouble-shooting tips.


Version: Final   Platform(s): windows, osx   Updated: Thu Jan 19 2006

Listing Details
Visit
Refer
PDF
  Member Reviews (0) Visitor Ratings

   Variables in PHP   Hits: 452 

 
Variables are a vital part of the server-side language, PHP. They are unavoidable but very simple to learn. In this short tutorial, I hope to give you a basic insight into using them.


Version: Final   Platform(s): linux, windows, osx   Updated: Thu Jan 19 2006

Listing Details
Visit
Refer
PDF
  Member Reviews (0) Visitor Ratings

   My First PHP script tutorial   Hits: 784 

 
Helps you create your very first fully working php script. using basic php parsing and the print function.


Version: 1   Platform(s): n/a   Updated: Thu Nov 24 2005

Listing Details
Visit
Refer
PDF
  Member Reviews (0) Visitor Ratings

   PHP functions tutorial   Hits: 778 

 
Provides information on php functions. With step by step code to help your create and understand basic functions.


Version: n/a   Platform(s): n/a   Updated: Thu Nov 24 2005

Listing Details
Visit
Refer
PDF
  Member Reviews (0) Visitor Ratings

  Total: 145    Displaying: 61 - 80 Pages:   1 2 3 4 5 6 7 8

Share


Register | FAQ/Support | Contact Us | About Us | Getting Rated | Link to Us | Bookmark Us | Advertising Info | Terms of Use | Privacy Policy
Copyright © 2008 iNET Interactive. All rights reserved.
Other iNET Interactive Sites:
Web Hosting Talk | dBForums | Mac Forums | Hosting Catalog