NEW LISTINGS  HOT LISTINGS  TOP RATED  EDITOR PICK  ADD A LISTING  UPDATE A LISTING  GET RATED  UPGRADE A LISTING
  HOME     MY ACCOUNT     POWER SEARCH     REGISTER     MEMBER LIST     SUGGEST CATEGORY  

Average Visitor Rating: 0.00 (out of 5)
Number of ratings: 0 Votes

Visitor Rating

Tutorial: Creating a file based login system
34812 Tutorial: Creating a file based login system http://www.phptoys.com/e107_plugins/content/content.php?content.35 Learn how to create a file based login system to register, login and logout users. You can use this method without any database. PHP > Tips and Tutorials > User Authentication Feb 18, 2007 Php Toys send email to Php Toys

Write a Review   Add to My Favorite   Refer it to Friend   Report Broken Link  



Other links owned by this user
Wysiwyg editor to Apache FOP format based file on block-container (Floating Layer) element and is child, and export on pdf, postscript, xhtml.
Category:

YouTube Videobuster is a PHP script to search, watch and download movies from youtube on your site.
When your visitors search for videos, they're going to find them! Stream millions of videos, without even hosting them!
Allows users to download the videos.
You can add your AdSense pub-id.
Data is pulled dynamically from the content providers - no mysql database required.
Easy Installation!
Category:

A cookie is a small amount of data which is either stored at client side in text file or in memory of the client browser session. Cookies are always sent with the request to the web server and information can be retrieved from the cookies at the web server. In ASP.Net, HttpRequest object contains cookies collection which is nothing but list of HttpCookie objects. Cookies are generally used for tracking the user/request in ASP.Net for example, ASP.Net internally uses cookie to store session identifier to know whether request is coming from same client or not. We can also store some information like user identifier (UserName/Nick Name etc) in the cookies and retrieve them when any request is made to the web server as described in following example. It should be noted that cookies are generally used for storing only small amount of data(i.e 1-10 KB)
Category:

Search, list and view files from a directory
Category:

Learn how to create black-and-white flash menu. To create this tutorial, you have to use action script. You will aslo learn:

1. How to design a menu,
2. How to animate it,
3. How to apply action script on menu to make it more powerful and more.
Category:

Log on to the web-based cms control panel if you want to quickly add, edit, or update your content. This system aims for a simple, easy to use, fast website. The Content Management system allows an individual, business or enterprise to have a continuous web presence with a lot of efficiency and speed. Create your website with this content management script is very easy
Category:

Read 21 different 1D barcodes , including Code 39, Code 128, etc. from images stored in PDF , TIFF, JPG and other image file formats. Process invoices, route incoming fax documents , index documents in scanning service bureaus and support critical production applications. No matter from which source you obtain the images: Fax server, document scanner, camera or microfilm scanner, ClearImage 1D Pro will read them:
Category:

Converter "SharePDF" allows you to convert PDF file to most popular graphic formats: jpg, gif, png, bmp and tiff. It is easy to use and does not require any special skills. "SharePDF" helps you to save each page of PDF document as a separate graphical file. Using SharePDF you can convert your PDF document in a few mouse clicks.
Category:

JPEG compresses an image based on the color information present in the image (2). Thus, the file sizes are not a true representation of how large an image is when displayed on screen. In trying to sort out small images based on their width or height we face the challenge of sorting images which are unusually tall or wide. Hence, sorting images based on their pixel dimension is a more accurate way of sorting images into groups.
Category:

Vote 4 Me is a classic voting PHP script designed for webmasters who need a fast, reliable, flexible and easy-to-use voting with membership system software. Script have powerfull admin area with many advanced features and detailed home page statistics tracking (button image, link description, impressions, hits, in hits and out hits). Script laso have advanced state of the art members area!
Category:

In this article we will look at object and collection initializers, which provide a neater syntax for setting the initial values of properties for objects and the initial contents of collections. We will then move on to anonymous types, which you need to know about to understand Linq.
Category:

This version of JavaScript Ticker can show news from more RSS feeds in a vertical scrolling content. Each news is presented as a link, so user can click to the source of the news.
Category:

You can make extensive use of expressions for referencing string resources for localization, connection strings and application settings from configuration file. Expressions are evaluated at run time when the declarative elements of the page are parsed, and the value represented by the expression is substituted for expression syntax.
Category:

Copy Database utility allows you to create copy of all or selected tables (schema and data) to another database or even to another database server.
This handy utility helps database advanced users, developers and database administrators create a second copy of a database within seconds.
Category:

# Completely customizable template.
# Easily integrated into current application.
# Custom dictionaries (comes with 7).
# Easy to edit file with custom settings.
# Puzzle Length & Width changeable via form.
# Automatic complexity settings.
# Easy coloring and word selecting w/checker.
# Makesafe file to insure added dictionaries are "puzzle" safe
Category:

Client-Server architecture is 2-Tier architecture because the client does not distinguish between Presentation layer and business layer. The increasing demands on GUI controls caused difficulty to manage the mixture of source code from GUI and Business Logic (Spaghetti Code). Further, Client Server Architecture does not support enough the Change Management. Let suppose that the government increases the Entertainment tax rate from 4% to 8 %, then in the Client-Server case, we have to send an update to each clients and they must update synchronously on a specific time otherwise we may store invalid or wrong information. The Client-Server Architecture is also a burden to network traffic and resources. Let us assume that about five hundred clients are working on a data server then we will have five hundred ODBC connections and several ruffian record sets, which must be transported from the server to the clients (because the Business layer is stayed in the client side). The fact that Client-Server does not have any caching facilities like in ASP.NET, caused additional traffic in the network. Normally, a server has a better hardware than client therefore it is able compute algorithms faster than a client, so this fact is also an additional pro argument for the 3.Tier Architecture. This categorization of the application makes the function more reusable easily and it becomes too easy to find the functions which have been written previously. If programmer wants to make further update in the application then he easily can understand the previous written code and can update easily.
Category:

Features :
Suppress all javascripts error notice from browser.
Category:

You can specify a maximum file size and maximum image width/height inside the php code; Users can also specify maximum width/height when they upload the image, so that image is scaled down if they want to.
Category:

This script requires the Dynamic HTML scripting library dynLib. For more information about dynLib please visit the dynLib website.
Category:

Guestbook7 is a PHP/MySQL guestbook system with admin function's, simple CAPTCHA. It features the option to run embedded into a PHP page or standalone.
Category:

Other links at PHP > Tips and Tutorials > User Authentication
One cool thing about php is that you can fairly easily validate users before displaying content on a page by page basis. Let's say you don't want to restrict the entire directory using htaccess, this is a neat alternative. Let's create a login system using PHP and mySQL. First we need to create the table that holds our user data. We're going to have 3 fields, logged, which will keep track of the last time a person logged in to the page, user and pass which will be the username and password respectively. Using Telnet you can simply cut and paste this into your mySQL monitor. If you need help with how to log into the mySQL monitor then see the diary entry on connecting to mySQL.
Category:

Programming a php login script can be a real pain. It has to be well coded, unique and, most of all, secure. We will pass all the mentioned aspects of a php login system in this tutorial by actually building one. Today I'm going to teach you how to write a good login script with user levels (admin, members, managers etc.), with forgot password included, user activation upon registering and just about everything that is supposed to be included in a good login system. Just like we did on the search engine tutorial some while ago, we are going to code our project with multiple examples, upgrades of code and also by comparing a bad usage with a good one.
Category:

First you will use a form to pass the $pw variable to the php script. When entering passwords into forms it is a good idea to use the "password" input box instead of the "text" one, so that as you type there are asterisks in place of the input. Something like this will work fine:
Category:

Include all features of 4MemberOnly - create a login and member area on your site quickly and with the least effort and expense, emails the login details to new users and can recover lost passwords, validate users' email.
Use any HTML editor.
No photoshop needed.
4MemberOnly Template uses HTML, CSS, PHP and MySQL.
4MemberOnly Template can integrate with any existing php/mysql website easily.
Category:

How to build a member only area on your site using 4MemberOnly
Category:




Main Category
178
2033
792
284
174
1802
1113
905
1157
7350
70
898
59
2185
172

Join Mailing List
Joining mailing list will entitle you to receive occasional emails informing you of news and updates to the site and any special offers that may be of interest to you.



Top 10
Directory Statistics

Links: 19151
Categories: 1275
Registered Users: 687
Mailing List Subscribers: 2041
Unique Outgoing Hits: 219468

Pagerank Statistics
PR 10
2 site(s)
PR 9
9 site(s)
PR 8
36 site(s)
PR 7
288 site(s)
PR 6
828 site(s)
PR 5
2006 site(s)

PHP News