Your Ad Here

 Navigation
Home
Source code
Tutorials
RSS feeds
Articles
Wordpress plugins
Blog
Books
Software
Downloads
Hosting
manuals
Script directory
Training
Our Links




 Sponsors
 Links
software directory
domain names
golfing products
 Downloads
 Misc
Webmaster Resources
Only PHP
ScriptSearch.com
Scripts.com - Get the best scripts NOW!
AndreaPHP Programming

Valid XHTML 1.0 Transitional


Valid CSS!


Creating Dynamic Website Content with PHP - MySQL


Fresh website content for your visitors can be of real benefit when
attempting to generate repeat traffic. Most webmasters, however, just
don’t have enough spare time to frequently update or rebuild their
pages manually. If your web site hosting company provides free access
to PHP and MySQL, this article will show you how to combine those two
open source tools and replace a portion of your websites’ static
content with frequently changing dynamic content.

Why do you need dynamic content for your website?

Static pages on a website eventually become “stale” and visitor
traffic can fall significantly over time. The drop in traffic can be
attributed to these primary factors:

1) The reluctance of search engines to include and display your
potentially “out of date” pages in their search results,

2) The finite number of other subject related websites that would be
willing to link to your information on a specific topic, and

3) Visitors that learn to view your static website with a “been there,
done that” attitude.

Creating and maintaining a web site requires a significant investment
in time and resources. Loosing repeat visitors diminishes the value of
your investment. Without repeat traffic it is virtually impossible for
a website to be a continuing success.

How can you add dynamic content without having to purchase expensive
software?

One proven (and easy to implement) method of creating dynamic content
for your website is by rotating information on key, higher traffic web
pages using PHP with a MySQL database. Rotating content can take the
form of a series of rotating articles, a rotating group of product
listings, or even a simple “thought for the day”. What is important is
that your clients and visiting search engines find new and interesting
information each time they visit your website.

As an example of dynamic content creation, we will build a system that
rotates information about a group of products on the main page of a
hypothetical retail sales web site that markets widgets. Our goal is
to present information about a different type or model of widget
available for purchase whenever a consumer visits the shopping web
site.

Step One: Create a content table to hold your widget data.

There are a couple of options for storing the data to be displayed in
your dynamic content rotation. The first option would be to create a
new database, or perhaps simply add a table in an existing product
database that will hold the information that you wish to display.

Let’s take five theoretical widget products and design a table as
follows:

+------+-----------------------+
| item | product |
+------+-----------------------+
| 1 | Plastic Widgets |
| 2 | Metal Widgets |
| 3 | Wooden Widgets |
| 4 | Rubber Widgets |
| 5 | Stone Widgets |
+------+-----------------------+

1-a) Create your table with the following SQL statement:

CREATE TABLE `content_table` (
`item` int(4) NOT NULL auto_increment,
`product` varchar(10) NOT NULL default '',
KEY `item` (`item`)
) TYPE=MyISAM AUTO_INCREMENT=6 ;

This table contains two fields. The first is an item number and the
second is a description field that will hold the product name and
features. Note: You can add fields to your actual table including: an
image URL field, shopping cart direct purchase URL field, product page
filed, etc.

1-b) Insert the example data into your new table as follows:

INSERT INTO `content_table ` VALUES (1, ' Plastic Widgets');
INSERT INTO `content_table ` VALUES (2, ' Metal Widgets');
INSERT INTO `content_table ` VALUES (3, ' Wooden Widgets');
INSERT INTO `content_table ` VALUES (4, ' Rubber Widgets');
INSERT INTO `content_table ` VALUES (5, ' Stone Widgets');

Once you have completed these two steps you will have a table compete
with data to be shown on your website.

Another option would be to utilize your existing product table. If
there are hundreds of different models and styles of widgets already
in one of the tables in your database, you could utilize the same
structure we are learning now to connect directly to that table and
display the already existing data.

Step two: Working with your new table:

For dynamic content displays to function there must be a mechanism in
place that instructs your web page as to which item should be shown to
the visitor. These mechanisms vary in complexity from extremely simple
commands to the more complicated use of cookies or IP tracking to
determine which item should be displayed.

For this tutorial, we will utilize one of the most effective
mechanisms and perhaps the easiest to incorporate. This is the use of
a random number generator for deciding which item will be shown.

To create a random number generator using PHP you must first calculate
the total number of possible items that you want the system to choose
from. In this example we had five items so the maximum number of
choices will be 5. The reason we need this number is to limit the
random numbers being delivered. If we have five items, we want the
number generator to only give us a result of between 1 and 5.

We must now create a variable for our PHP code that will hold our new
randomly generated item number as follows:

$mynumber = rand(1, 5);

This little snippet of code will act as the mechanism to “select” a
widget product item at random from the five provided in the content
table that we created.

If we created 100 different items for your dynamic display instead of
just five, you would simply change the “rand (1, 5)” part of the code
to reflect the different maximum number. In this case we would change
it to “rand (1, 100)” so that the random number generator gives us
back a number somewhere between one and one hundred.

We are now ready to extract the randomly selected item’s information
from your table so that it can be displayed on your webpage.

You can now connect to your database and query your table to find the
data for the item that matches the random number you created, as
follows:

$query_content = "SELECT * FROM content_table WHERE item = $mynumber ";

Step three: Displaying your data:

When displaying your data it is important to maintain consistency in
presentation size. It is preferable to create a table of specified
dimensions (such as “width=400”) and display your results within this
table. In this way the page proportions do not have to change with
each new item (which can be very confusing for visitors).

Simply display the results just as if these where any other MySQL
query using the echo command:

echo $query_content['product'];

Every time your page is loaded a different widget product will be
selected at random for display on that page.

What else can you do with your dynamic content?

The only limits are within your imagination. By adding a title and
meta description tags to your content table, you can alternate the
title and search engine description for that page. You can also
utilize this system to promote affiliate programs or sponsorship
opportunities by rotating affiliate links and banners.

The proper use of dynamic content can bring your website back into
favor with search engines and encourage your visitors to return
frequently to see what is new.

About the Author

Don Beavers lives in Bryan, Texas and is an enterprise level PHP-MySQL programmer at the Datavor Web Directory and at the Shopping Elf directory Shopping Guide

Written by: Don Beavers

 



Here is our complete list of articles


Apache MySQL and PHP for Windows

Apache MySQL PHP for Windows

ASP CGI and PHP Scripts and Record Locking What Every Webmaster Needs To Know

Autoresponders With PHP

Bring Your Web Site to Life With PHP

Clickbank Security Using PHP

Create a Simple Effective PHP Form for Your Web Site

Developing a Login System with PHP and MySQL

Developing State enabled Applications With PHP

For Automated Sites PHP and MySQL are A Perfect Match

Get PHP pages indexed in the Search engines

Getting your Visitors Details Using PHP

How PHP Can Help Save You Time And Mistakes

How to make a simple form mailer with PHP

HTACCESS Wrappers with PHP

Maguma has integrated support for the eBay Acellerator Toolkit for PHP PHP AT in their PHP IDE Maguma Workbench

Make a Search Engine For Your Website With PHP

Mastering Regular Expressions in PHP

More Autoresponders With PHP

MySQL Database Handling in PHP

ONLINE the eBay Accelerator Toolkit for PHP PHP AT for the PHP IDE Maguma Workbench is available

Password Protection and File Inclusion With PHP

Password Protection with PHP MySQL and Session Variables

PHP Account Activation

PHP and Cookies a Good Mix

PHP Auto surf Websites

PHP Databases

PHP Dynamic Content

PHP Email

PHP Encryption

PHP Error Pages

PHP Files

PHP Form Series Part 1 Validators Client side Validation

PHP General Scripting

PHP Image Gallery

PHP in the Command Line

PHP is 10 years old

PHP my favorite Server side Programming Technology

PHP On The Fly

PHP Pear Packages Why they are so important to php developers

PHP Redirect

PHP Scripts Dont Have to End in PHP

PHP Server to Client with No Refresh

PHP Sessions / Cookies

PHP Templates

PHP User Login Authentication

PIM Team Case Study Creating Text Effects With PHP and GD

Protecting your HTML and PHP Source Code

Quick Intro to PHP Development

Serialize this Saving Objects in PHP

Simple Solution for Php Includes IFrames

Site Personalization With PHP

Some PHP functions you must know

Track Your Visitors Using PHP

Victoryvisions The PHP/Mysql Company Complete website development company



Books
 Sponsors
 Random Code
find a string in another(string)
GD email address(internet)
an example of array_push(beginner)
 Random Article
How to Implement CAPTCHA With PHP and GD

So, you have a submission form on your website and need to prevent spam by auto-submitters. The most common way to do this is to implement CAPTCHA - an image with a randomly generated string (quote from Wikipedia, free online enciclopedia: “A CAPTCHA is a type of challenge-response test used in computing to determine whether the user is human. "CAPTCHA" is an acronym for "Completely Automated Public Turing test to tell Computers and Humans Apart", trademarked by Carnegie Mellon University.”)

Simple, quick and efficient PHP solution for implement CAPTCHA:

the advantage of this solution: it is easy to read symbols by human and automated captcha processor software, but hard to process the image by computer because common CAPTCHA processors can't understand which one of the outputted symbols it must ignore!

obviously you need PHP engine enabled for your webserver, for execute PHP scripts, and GD (PHP graphics library) for generate the image. Webserver, PHP and GD versions are no matter, the solution below is tested for Apache(Windows and Unix), IIS(Windows), PHP-4, PHP-5, GD, GD2

1) Make a PHP script (separate file captcha.php) which will generate the CAPTCHA image:
[?php
session_start();
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
function _generateRandom($length=6){
$_rand_src = array(
array(48,57) //digits
, array(97,122) //lowercase chars
// , array(65,90) //uppercase chars
);
srand ((double) microtime() * 1000000);
$random_string = "";
for($i=0;$i<$length;$i++){
$i1=rand(0,sizeof($_rand_src)-1);
$random_string .= chr(rand($_rand_src[$i1][0],$_rand_src[$i1][1]));
}
return $random_string;
}
$im = @imagecreatefromjpeg("captcha.jpg");
$rand = _generateRandom(3);
$_SESSION['captcha'] = $rand;
ImageString($im, 5, 2, 2, $rand[0]." ".$rand[1]." ".$rand[2]." ", ImageColorAllocate ($im, 0, 0, 0));
$rand = _generateRandom(3);
ImageString($im, 5, 2, 2, " ".$rand[0]." ".$rand[1]." ".$rand[2], ImageColorAllocate ($im, 255, 0, 0));
Header ('Content-type: image/jpeg');
imagejpeg($im,NULL,100);
ImageDestroy($im);
?]

2) Add the following line at the top of the page where you need to implement the CAPTCHA (there should not be any output before this line, except you use php functions ob_start() and ob_end_flush() to turn on output buffering):
[?php session_start(); ?]

3) Add the following line for check is CAPTCHA entered by visitor valid, before the line where you will proceed submitted message:
[?php if($_SESSION["captcha"]==$_POST["captcha"])
{
//CAPTHCA is valid; proceed the message: save to database, send by e-mail ...
echo 'CAPTHCA is valid; proceed the message';
}
else {

echo 'CAPTHCA is not valid; ignore submission'; }?]

4) Finaly add the CAPTCHA to the form:
[img src="captcha.php" alt="captcha image"][input type="text" name="captcha" size="3" maxlength="3"]

P.S.
notice:
- the tags "[?" and "?]" in code samples above should be replaced to the "", you may download original article and code sample here: free download php captcha demo

- requirements: a webserver (windows or linux no matter) with PHP engine, with GD (graphic library) support, you may check your php settings with phpinfo() function

- you need some blank jpg image for use it as background for CAPTCHA string


a simple password function in PHP
  Network
Programming resources
Tutorials directory
Hosting resources
ASP site
Domain names
Progged
Maxi directory
bigarticle : free articles
A Code
Code N Tutorials




beginners PHP Copyright © 2004 onwards by beginnersPHP.