|
Mass Customization
Jim King
Isn't it great to go to a web site and it appears as though it was designed just for you.
This article will help you design a web site which makes
visitors feel like it was designed just for them.
First, lets scope out the project. You will need a mysql database, a table to store
the visitor's information, and php3 or php4 (I will explain how to use features of both).
This application will gather information about a visitor so the experience will become
more and more tailored to the visitor over time. For the sake
of this article, we will limit the information collected to that of the visitor's state.
This application is flexible
enough that you can collect any information you like. First, lets create the MySQL
table (we will assume that you have already created a database named leads):
create table leads(
sid char(32) NOT NULL,
state char(2));
For the rest of the article, we will assume that the database and the data table are named leads, and that the cookie identifying the visitor
is named lead.
[ Next Page ]
| Comments: | ||
| Searching for a script - for My SQL | Gayle | 12/01/04 11:16 |
| Asking again for the class file | Richard | 09/15/02 19:18 |
| terribly incorrect | slapshot | 04/01/02 10:36 |
| RE: Parse error | Grum | 06/29/01 00:27 |
| RE: Where are the class files? | John | 11/20/00 15:40 |
| Parse error | John | 11/20/00 00:57 |
| auctions | Maciek | 11/16/00 09:38 |
| RE: Article's Usefullness and Correctness | Guillaume "Guibod" Boddaert | 11/10/00 09:50 |
| How about this for user customization? ;) | Ironstorm | 11/08/00 16:11 |
| Quallity | jan janssen | 11/06/00 08:03 |
| RE: Article's Usefullness and Correctness | Jking | 11/03/00 14:15 |
| RE: Bit simple | Jking | 11/03/00 14:09 |
| RE: Php help | Tim Frank | 11/02/00 13:58 |
| Bit simple | Matt Berry | 11/02/00 13:42 |
| Article's Usefullness and Correctness | Tom Anderson | 11/02/00 12:12 |
| Php help | vikas | 11/02/00 06:49 |
| Where are the class files? | Geoff A. Virgo | 11/02/00 00:54 |
|
If you are looking for help, please post on the appropriate forum here. Your questions will be answered much more quickly. | ||


