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

Tutorial Subcategories Under Hypertext Preprocessor (PHP) (1012 Total)
(15)Advertising Management (270)Basics
(1)Calendars (9)Chat Scripts
(4)Collecting Information (25)Cookies/Sessions
(21)Date and Time (11)E-Commerce
(35)File Upload and Manipulation (22)Form Management
(31)Forms (19)Functions
(23)Functions and Objects (13)Game Creation
(134)General Development (33)Images in PHP
(49)IP and Security (7)Language and Text Filtering
(31)Membership Scripts (39)Miscellaneous
(48)MySQL Integration (25)Navigation and Templates
(7)News Scripts (2)Object Oriented Usage
(10)Page Numbering (3)Pagination
(8)Pear (0)PEAR Integration
(5)Polling Booths (2)Quotes
(20)Randomize and Rotation (12)RSS Feeds
(10)Script Development (6)Script Walkthroughs
(15)Searching (1)Shopping Carts
(5)Skins and Themes (21)Taggers Shoutboxes and Blogs
(26)Use Information and Stats (24)XML Integration
Recommended Reading
Stunning light effects (light painting, mirroring, torches and lamps). Photoshopping tricks that will make your jaw drop (color post-processing, tone-mapping, 360° panorama, spirals, never ending abyss). Are these subjects appealing enough? I bet they are, and there is no better place to learn them than in Trick Photography and Special Effects. Which also includes Core Photography Fundamentals, Filters for Lenses and Plug-ins for Photoshop and How to Make Money with Photography. Appealing enough? Then click here to learn more.
Page 8 of 41 pages  «Prev  1  2  3  4  5  6  7  9  10  11  12  13  14  Next» 

Ajax innerHTML
From Codecall Programming (Hypertext Preprocessor (PHP) Navigation and Templates)
This tutorial continues my tutorial on innerHTML. In this tutorial, instead of using a function that will directly update the page, we are going to use ajax techniques to update the page. By using Ajax, you can call out to any piece of PHP (or other web language like ASP) code, rather than just be able to use javascript.
PHP: Currently Active Users
From Codecall Programming (Hypertext Preprocessor (PHP) Use Information and Stats)
In this tutorial I'll show you how to show the users that are logged on to your website like the one in codecall home page. Theres several techniques that you can use to do so, I choose to use this one for simplicity.
PHP Refferal System
From Codecall Programming (Hypertext Preprocessor (PHP) Use Information and Stats)
This is a basic referral system i typed up while in school. Easy to understand and follow.
Simple Pagination
From Codecall Programming (Hypertext Preprocessor (PHP) Navigation and Templates)
How to make a simple pagination
Creating An RSS Feed With PHP And MySQL
From Higherpass.com (Hypertext Preprocessor (PHP) RSS Feeds)
Learn to create a custom RSS feed for your website content. These easy to build XML feeds can extend the reach of your content and grow your audience. This howto shows how to build and serve an RSS feed from your MySQL database.
rgb to hex colors and hex colors to rgb - php
From CodeCall Programming Forum (Hypertext Preprocessor (PHP) Basics)
when using colors in html and css you need to use a hexadecimal color (something like #ffffff) which is the base 16 value from the rgb color scale. sometimes you'll need to use the rgb scale instead, for example when allocating colors when drawing images with php and you maybe just prefer to write it in one of the ways even though you need to have it in the other. i will in this tutorial show you how you can make two functions(fromrgb and torgb) which can convert hexadecimal colors to rgb colors and vice versa.
graphics in php
From CodeCall Programming Forum (Hypertext Preprocessor (PHP) Basics)
i will in this tutorial show you how to create images with php, this uses inbuilt functions and doesn't need anything else then just php to work. let's begin.
how to create a text based web browser game
From CodeCall Programming Forum (Hypertext Preprocessor (PHP) Basics)
before i knew any web developing at all me and some friends wanted to create a text based web browser game, and it was my task to do the actual coding. so since none of knew how to do it i started to google and did that for many many hours, without any luck. most results were only people who wanted to get their own and got a reply like: "then you have to learn how you do it".
sessions in php
From CodeCall Programming Forum (Hypertext Preprocessor (PHP) Basics)
sessions is a good way for storing temporary data between your pages. a session is usually closed pretty fast after that the user have left the site so as i said, it's good for temporary storage, an example is the user's name or items the user have put in his/her shopping cart.
using cookies in php
From CodeCall Programming Forum (Hypertext Preprocessor (PHP) Basics)
cookies is small text files saved locally on the user's computer by the website, when the website later on wants the information it just reads the cookie on the user's computer. an example on what you can use cookies for is to see if the user has visited the site before, if it has then a cookie you saved the last time lies on the computer so therefor you can only check if it does.
the ternary operator in php
From CodeCall Programming Forum (Hypertext Preprocessor (PHP) Basics)
the ternary comparison operator is an alternative to the if-else statement, it's shorter and could be used to easily do a significant difference depending on a condition without the need of a if statement. the ternary operator is made for two different actions, one if the condition is true, the other one if it's false but with nested ternary operators we can use it like an if-elseif.else statement(more to that later). the syntax of a ternary operator looks like this:
Introduction to PHP – Part 1
From ...site title missing... (Hypertext Preprocessor (PHP) Basics)
PHP is a widely used open source server side scripting language that is used to create dynamic and interactive web pages.
simple file uploader
From CodeCall Programming Forum (Hypertext Preprocessor (PHP) Basics)
hello, today i'm going to explain you how you can make a simple file uploader.
how to highlight the php code
From CodeCall Programming Forum (Hypertext Preprocessor (PHP) Basics)
hi guys, there are two very useful functions that you can use in your website if you would write some php tutorials. these functions are: highlight_string and highlight_file wich highlighting the php code.
your simple guestbook
From CodeCall Programming Forum (Hypertext Preprocessor (PHP) Basics)
hi guys, i'm going to show you how you can make a simple guestbook using php/mysql.
smarty - part 3 - creating tables and lists
From CodeCall Programming Forum (Hypertext Preprocessor (PHP) Basics)
this tutorial will be in several parts:
using fulltext searches with php and mysql
From CodeCall Programming Forum (Hypertext Preprocessor (PHP) Basics)
fulltext searching with mysql
building a big project, part 7
From CodeCall Programming Forum (Hypertext Preprocessor (PHP) Basics)
one of my friends has been following along with this series, and was getting some odd errors from his (more recent) version of wamp. in particular, he's using php 5.3, while i was on 5.2.6. as a result, i figured i should upgrade. i didn't do the uninstall/reinstall, but things seemed to be fine until i noticed wamp was still using the 5.2.6 php instead of 5.3.0.
building a big project, part 6
From CodeCall Programming Forum (Hypertext Preprocessor (PHP) Basics)
in the last tutorial, i cheated. i showed the finished init.php without showing you the flawed version i had originally.
building a big project, part 5
From CodeCall Programming Forum (Hypertext Preprocessor (PHP) Basics)
in the last part, we had created a lovely registration menu. it sends out an email, and records entries in the database. all-in-all, it's a wonderful little tool. unfortunately, it's a bug-fest waiting to happen, at best, and a serious vulnerability for the site, at worst.
PHP Variables and Variable Functions
From Webmaster Forums (Hypertext Preprocessor (PHP) Basics)
PHP variables start with a dollar sign. The first character must be a letter. Other than that, you can use any letter or number. The variable name can be as long and as short as you want.
PHP Clock In/Out System
From Webmaster Forums (Hypertext Preprocessor (PHP) Collecting Information)
A Guide to creating a clock in/out system in PHP using MySQL
Tutorial: PHP and Sorting
From Webmaster Forums (Hypertext Preprocessor (PHP) Basics)
A tutorial on how to accomplish array sorting with PHP. PHP provides a large variety of functions for sorting arrays.
PHP: Storing images in XML file - Part I - Uploading image
From Webmaster Forums (Hypertext Preprocessor (PHP) XML Integration)
A tutorial on how to store images in XML files, for transfer and extraction.
PHP:  Storing images in XML file - Part II - Displaying image
From Webmaster Forums (Hypertext Preprocessor (PHP) XML Integration)
A tutorial on how to store images in XML files, for transfer and extraction.
Page 8 of 41 pages  «Prev  1  2  3  4  5  6  7  9  10  11  12  13  14  Next» 

Follow - Add - Share
Popular Tutorial Categories
2Dimensional
3Dimensional
Website Editing
Audio/Voice Editing
Office Applications
Animation (Web & Media)
Web Programming
Other Applications
Content Management System - CMS
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
cooltutorials.net (random)(7)
http://cooltutorials.net
photoshoponlinetutorials.com (random)(5)
http://photoshoponlinetutorials.com
jotlab.com (random)(5)
http://jotlab.com
Topsite Leaders (More...) (Join...)
PhotoshopStar
#1 (12330 Out)
SWFspot
#2 (11084 Out)
Naruto Wallpaper
#3 (9595 Out)
aeiko
(Random) (3161 Out)
Xeonfx | All you want
(Random) (3288 Out)
3D CAD Resources
(Random) (2543 Out)