Hypertext Preprocessor (PHP) Tutorials - index of FREE Tutorials for Hypertext Preprocessor (PHP)

Tutorial Subcategories Under Hypertext Preprocessor (PHP) (779 Total)
(15)Advertising Management (82)Basics
(0)Calendars (4)Chat Scripts
(4)Collecting Information (24)Cookies/Sessions
(21)Date and Time (11)E-Commerce
(35)File Upload and Manipulation (21)Form Management
(27)Forms (11)Functions
(23)Functions and Objects (13)Game Creation
(129)General Development (29)Images in PHP
(45)IP and Security (8)Language and Text Filtering
(30)Membership Scripts (31)Miscellaneous
(43)MySQL Integration (25)Navigation and Templates
(7)News Scripts (2)Object Oriented Usage
(10)Page Numbering (2)Pagination
(8)Pear (0)PEAR Integration
(4)Polling Booths (2)Quotes
(21)Randomize and Rotation (12)RSS Feeds
(4)Script Development (6)Script Walkthroughs
(14)Searching (2)Shopping Carts
(5)Skins and Themes (21)Taggers Shoutboxes and Blogs
(24)Use Information and Stats (24)XML Integration
Page 1 of 32 pages  1  2  3  4  5  6  7  8  9  10  11  12  13  14  Next» 

Managing Users with PHP-Nuke
From ...site title missing... (Hypertext Preprocessor (PHP) General Development)
In this article, we will walk through the creation of new users, both by the super user and also by registering as a new user from the standard visitor interface on the site. We will also look at the basics of subscribing users to the site. Once we have some users in place, we will look through the Your Account module, which provides a personal area for each user within the site, and allows them to personalize the site. We will also look at the system of points awarded to users for interacting with the site, and the benefits this brings them through user groups. The final part of the article covers setting up other administrator accounts for managing individual modules rather than the entire site.
Form Example with Validation using PHP
From Montana Programmer (Hypertext Preprocessor (PHP) Forms)
If you program custom PHP applications, you will often times need to work with a form and require certain form fields. A few real world examples would be a contact form, registration form or signup form. This tutorial shows you a simple and quick method for creating a form page that handles errors and pre-populates fields if there is an error, and a method for processing the form and validating the information.
Warning: session_start(): Cannot send session cookie headers
From Tutorials, Scripts, Technology and Interview Tips (Hypertext Preprocessor (PHP) Cookies/Sessions)
Some times when you intergrate your existing wordpress blog with an external website you will be experiencing some warnings like Cannot send session cookie headers already sent.
Video tutorial: How to integrate paypal buy now button with shop
From Webmaster video school (Hypertext Preprocessor (PHP) E-Commerce)
Originally this tutorial is part of my “Professional webmaster video course” but since it is not so easy to find good information about full integration of Paypal’s buy now buttons and I was getting many questions I decided to share this lesson here on my blog. Actually the integration process is not difficult, the challenge is to [...]
PHP video tutorial Website security protect Prevent SQL Injectio
From Webmaster video school (Hypertext Preprocessor (PHP) IP and Security)
Protect your website from SQL injection with PHP. Preventing SQL injection is not difficult but very important/ SQL injection is very dangerous but can be very easily prevented. In this post I will show you how to prevent hackers attacks on you This video is part of my “Professional Webmaster Video Course”. As a result of many requests I [...]
How to create secure PHP script login form page using session
From Webmaster video school (Hypertext Preprocessor (PHP) Membership Scripts)
In this tutorial I will teach you to create secure login process using PHP session object variable and database to store the login information of our members. This is very useful if you have a members are on your website. This login process is very common and I am sure you will use it in your [...]
PHP : Pagination display results from database divided to pages
From Webmaster video school (Hypertext Preprocessor (PHP) Pagination)
If you have long tables it is not practical to display all the results in one page. There is a need to divide the results into smaller groups and display them on different pages. Pagination technique is commonly used by webmasters. I will explain you this important technique in this post. I think that you shouldn’t remember everything by [...]
Video PHP tutorials: Manage statistics using the SERVER object
From Webmaster video school (Hypertext Preprocessor (PHP) Functions and Objects)
This tutorial is about managin stats with PHP. During this lesson you will learn to track you visitors by date, ip, browser or refferer. This tutorial was made to show you the general concept of collecting and displaying statistic information about your visitors. This video is part of my “Professional Webmaster Video Course”. As a result of many requests [...]
Video tutorials: PHP Mail function send emails from your site
From Webmaster video school (Hypertext Preprocessor (PHP) Functions)
This tutorial is about sending emails from your website or web server using PHP Mail function. If you want to send emails form local host without uploading your website to a remote server you will need to use a special software called POSTCAST which will simulate an email server on your local computer and allow you [...]
Video tutorial: How to create PHP Shopping cart using SESSION
From Webmaster video school (Hypertext Preprocessor (PHP) Shopping Carts)
In this post I will show you how to create an effective shopping cart using PHP session variables. This lesson is part of my “Professional webmaster video course” but since I was asked by many visitors to explain how to create shopping carts, I decided to share this lesson. The shopping cart is created using the SESSION [...]
How to allow users upload files to server with PHP video tutoria
From Webmaster video school (Hypertext Preprocessor (PHP) File Upload and Manipulation)
In this post I will explain how to allow our visitors or site admin to upload files to our web server using html forms and php syntax. I will also show how to block harmful files and prevent them from being uploaded.
Php Class to Retrieve Alexa Rank
From Improve Website Speed (Hypertext Preprocessor (PHP) Basics)
Alexa does not offer any free API to obtain Alexa Rank. However there is a simple method to obtain it in the same way the Alexa Toolbar does.
Add Related Posts to Wordpress without a Plugin
From Montana Programmer (Hypertext Preprocessor (PHP) Basics)
Display related posts in Wordpress without having to add another plugin. The code is easy to implement and customize into your Wordpress blog.
PHP Script Tips: Cool Secrets of PHP
From Montana Programmer (Hypertext Preprocessor (PHP) Basics)
Some interesting things that you can do with PHP that are not mainstream. They will help you optimize your code and can be life savers in certain PHP scenarios.
Installing PHP-Nuke
From ...site title missing... (Hypertext Preprocessor (PHP) Basics)
In this article, which is the second article of the article series, you will learn how to install and configure PHP-Nuke, apply patches, and also create the database. At the end of this article you will have a fully operational PHP-Nuke site, ready to go!
How to handle URLs in PHP
From Improve Website Speed (Hypertext Preprocessor (PHP) General Development)
URL handling is one of the tasks you have to do from time to time in PHP. Sometimes you have to do it because you want to record the referral sites, other times because you want to write your own spider or just because you want to retrieve your current URL.
How to Identify Duplicate and Similar Text in Php
From Improve Website Speed (Hypertext Preprocessor (PHP) General Development)
It’s not a common problem but sometimes you have to check if 2 texts are similar.
How to Send Mail From PHP
From Improve Website Speed (Hypertext Preprocessor (PHP) General Development)
Sending mails from PHP can raise certain problems. Usually the mail is sent from php through a simple function PHP function: mail(…). However the function needs a module that should be enabled in the php ini file. Not all the hosting providers enable it and you can not make changes in php admin area in the php shared hosting.
How to Write a PHP Script to Run Shell Commands from Browser
From Improve Website Speed (Hypertext Preprocessor (PHP) General Development)
It happens pretty often for me to have to run shell commands in a hosting environment. I do it all the time via a simple php script. I tested it on godaddy and dreamhost and on other hostings environments and it works fine.
Model View Controller in PHP
From Improve Website Speed (Hypertext Preprocessor (PHP) General Development)
The model view controller pattern is the most used pattern for today’s world web applications. It has been used for the first time in Smalltalk and then adopted and popularized by Java. At present there are more than a dozen PHP web frameworks based on MVC pattern.
TYPO3 for Connecting External APIs: Flicker and Youtube
From ...site title missing... (Hypertext Preprocessor (PHP) General Development)
In this article by Dan Osipov, we will see how external services specifically Flickr and YouTube, can be leveraged to expand the system. We pull in files from YouTube and Flickr.
Magento’s Architecture: Part 1
From ...site title missing... (Hypertext Preprocessor (PHP) General Development)
Here in this two-part article by Jamie Huskisson, we will learn about this architecture and how it applies to development with Magento. We will learn: * Where everything is within Magento * What all the base directory files and folders do * The basics of how the template system works * How modules work within the system * How the Zend Framework fits into the equation * The best methods for backing up Magento
PHP File Download Security
From Higherpass.com (Hypertext Preprocessor (PHP) File Upload and Manipulation)
Protect your downloadable content by storing the files outside your webroot. This is an easy solution to online subscription content protection.
Shipping and Tax Calculations with PHP 5 Ecommerce
From http://www.packtpub.com (Hypertext Preprocessor (PHP) E-Commerce)
In this article you will learn about how to process orders for shipping and tax calculations, once your e-commerce store has received the purchase order. Covers third-party shipping APIs, integrating shipping and tracking notifications on orders, tax costs integration...
Shipping Modules in Magento: Part 1
From ...site title missing... (Hypertext Preprocessor (PHP) General Development)
Here, we will learn how to create a shipping module, so that we can develop our own when the need arises. By the end of this article we will: * Know where to find shipping modules that others have produced * Know how to put together a basic shipping module and know what values pertain to what information * Be able to create our own methods for calculation or handling shipping with Magento
Page 1 of 32 pages  1  2  3  4  5  6  7  8  9  10  11  12  13  14  Next» 

Add/Share Us
Popular Tutorial Categories
2Dimensional
3Dimensional
Website Editing
Audio/Voice Editing
Office Applications
Animation (Web & Media)
Web Programming
Other Applications
Content Management System - CMS
Latest NewsBlog Post

About UPrinting.com

For over 25 years, UPrinting has been a trusted leader in Online Printing , featuring its signature easy-to-use website and the famous free file review, a complimentary proofing service which requires no upfront payment. UPrinting offers convenient…

Previous NewsBlog Posts
Posted: 31 03, 2009
Posted: 24 03, 2009
Posted: 17 02, 2009
Posted: 04 08, 2007
Statistics
People Online 105
Member Count 5765
Tutorial Count 19984
Random Tutorials
Grids
Learn to create a grid
Coloring Tutorial
FUN AND EASY WAY TO COLORIZE THE GRAYSCALE SKETCH!
How to Hide or Remove Internet Explorer 7 Search Bar
How to Hide or Remove Internet Explorer 7 Search Bar
Shiny Orb
In this tutorial, i'll show you how to make a nice and shiny gold orb. You can use this orb to add style to your user interface
Create Charts {Tutorial for beginners}
Graphs offer a visual representation of the data. Instead of having to analyze columns of values of spreadsheet, it can interpret the meaning of the data of a single look. A graph transmits the messages quickly. With a graph, the data of spreadsheet can be transformed to show comparisons, patterns and tendencies.....
Top Authors (More...)
coolcommands.com #1(446)
http://coolcommands.com
AdobeTutorialz #2(412)
http://adobetutorialz.com
javascript.internet.com #3(304)
http://javascript.internet.com
saddle-soap.net (random)(4)
http://saddle-soap.net
thinctanc.co.uk (random)(1)
http://thinctanc.co.uk
proeffect.com (random)(4)
http://proeffect.com
Topsite Leaders (More...) (Join...)
PhotoshopStar
#1 (8447 Out)
SWFspot
#2 (7932 Out)
Naruto Wallpaper
#3 (6771 Out)
EvokeOne
(Random) (3369 Out)
Cyrostir
(Random) (1843 Out)
TutorialFire
(Random) (1611 Out)
Advertise on Tutorial-Index
Check out our Privacy Policy

Tutorial providers resources
Submit Tutorials
All Pending Tutorials
Contact Us

Other Dreamattic projects
AppleTvHacks.net
Biz-News.com
Tips4Mums.com
Megawoot.com
Voip Providers List
WeirdConverter.com


Copyright
Tutorial-Index™ 2006-2009
All Rights Reserved