New Scripts | PHP | Tutorials & Tips
Creating a domain checker
posted byphptoys2inNetworking
In this tutorial I will show you how to create a PHP script to check whether the actual domain name is available or not.
Reviews0
PriceFree
Views3021
Simple chat and admin panel with PHP/MYSQL
posted bywebmasterinChat Systems
A in-depth tutorial on how to build a simple chatroom and basic admin options like IP banning and editing and deleting messages. Includes SQL table setup.
Reviews0
PriceFree
Views6998
Session Saver
posted byvitourinCookies & Sessions
This package can be used to save and restore objects in session variables.
It can register a list of one or more classes objects that are intended to be saved. The classes must implement the SessionObject interface.
The class can call all the registered classes to save and restore the state of the session objects.
Reviews0
PriceFree
Views1769
Calculate a Person's Age From Two Dates
posted byByteMyCodeinDate & Time
Many registration forms request registrants' birth dates. This function allows you to use that information to determine a person's age. This is useful when determining whether COPPA requires parental consent (if the user is under 13).
Reviews0
PriceFree
Views2139
Chatterbox
posted byByteMyCodeinChat Systems
This example shows how to use AJAX to implement a basic chat system on a website. It refreshes the chat transcript using AJAX to maintain a constantly updated view of the chat session.
Reviews0
PriceFree
Views3002
Simple Image Resize in GD
posted byByteMyCodeinImage Manipulation
Were going to be creating it in a function, so that we can re-use this wherever we need to. This particular function saves the thumbnail file to a directory on the server, you could actually skip saving the file and just print out the image itself if you would prefer to do that.
Reviews0
PriceFree
Views2377
Creating a count down system
posted byphptoys2inDate & Time
In this tutorial I will show you how to create a simple count down system.
Reviews0
PriceFree
Views3594
Macronimous- Command Line Scripting in PHP
posted byseo.macronimousinDevelopment
PHP can also be run as a command line script like c, c++, java, etc. This article provides an introduction to command line scripting in PHP and emphasise on its significance in PHP applications.
Reviews0
PriceFree
Views1070
Getting prices using the amazon SDK
posted bywebmasterinE-Commerce
Learn how to use the amazing SDK in conjunction with string parsing functions from PHP to retrieve the latest price information from amazon.
Reviews0
PriceFree
Views1368
Working with Directories
posted bybouvilloninFile Manipulation
As is necessary for any language, PHP has a complete set of directory support functions. PHP gives you a variety of functions to read and manipulate directories and directory entries. Like other file-related parts of PHP, the functions are similar to the C functions that accomplish the same tasks, with some simplifications. This tutorial describes how PHP handles directories. You will look at how to create, remove, and read them.
Reviews0
PriceFree
Views1252
Create Thumbnail Images using PHP
posted bybouvilloninImage Manipulation
This tutorial will describe how to create thumbnail images on the fly using PHP. Furthermore you will learn how to process a whole folder of images and create their thumbnails. Since this requires the GD library, you will need an installation of PHP with at least GD 2.0.1 enabled.
Reviews0
PriceFree
Views2093
Export Database Schema as XML
posted bybouvilloninDatabase-Related
Sometimes it can be useful to have a dump of the current database schema. This script reads the schema from a MySQL database and outputs XML that describes the schema.
Reviews0
PriceFree
Views1185
Dynamic thumbnails from websites
posted byolaf2inWeb Fetching
This tutorial will show you how to create dynamic thumbnails from websites using the thumbnail service Girafa.
Reviews0
PriceFree
Views2056
Creating a file based login system
posted byphptoys2inUser Authentication
In this tutorial I will show you how to create a file based login system to register, login and logout users. You can use this method without any database.
Reviews0
PriceFree
Views7607
Creating Calendar in PHP
In this tutorial I will show you how to create a calendar script in PHP. We will create a simple but good looking - easy customizable via CSS - calendar table.
Reviews0
PriceFree
Views6027
Migration of Access data to MySQL
posted bymeetfazaninDatabase-Related
In this tutorial you will learn how to migrate "Access data to MySQL". It is very important for ASP TO PHP Comers.
Enjoy It!
Reviews0
PriceFree
Views1232
Creating a file manager
posted byphptoys2inFile Manipulation
In this tutorial I will show you how to create a PHP application to display directory content (filename, file size, modification date) and navigate between them.
Reviews0
PriceFree
Views3135
Creating file online
posted byphptoys2inFile Manipulation
In this tutorial I will show you how to create a file on your web server using your browser.
We will create a html form which will be store the file during the form processing mechanism.
Reviews0
PriceFree
Views2794
Select random records from a MySQL database
posted byphptoys2inDatabase-Related
Sometimes it could be very helpful to select a record from a table randomly.
You can find such solution when you see random partners or randomly selected tutorials.
This tutorial shows you how to select records randomly from a MySQL database.
Reviews0
PriceFree
Views3134
PHP: Sending Email (Text/HTML/Attachments)
posted bybouvilloninMailing List Management
So, you want to send automated email messages from your PHP application. This can be in direct response to a user's action, such as signing up for your site, or a recurring event at a set time, such as a monthly newsletter. Sometimes email contains file attachments, both plain text and HTML portions, and so on. To understand how to send each variation that may exist on an email, we will start with the simple example and move to the more complicated.
Reviews0
PriceFree
Views3959