Web Development Information |
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: 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 field, etc. 1-b) Insert the example data into your new table as follows: INSERT INTO `content_table ` VALUES (1, ' Plastic 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. Don Beavers lives in Bryan/College Station, Texas and is an enterprise level PHP-MySQL programmer at both the Shopping Elf Shopping Guide, and the Datavor Web Directory.
MORE RESOURCES: Unable to open RSS Feed $XMLfilename with error HTTP ERROR: 404, exiting |
RELATED ARTICLES
Three Things Every Website Should Do When I started my company in 2002, I knew I needed to have a website. Why? To provide credibility! How can a company be "real" in this day and age if it doesn't have a website? So, like many companies, I published an informational website that explained "here's who we are, and here's what we do". Website Value - Whats Your Business Website Worth? If you were asked to put a value on your website what would it be? Perhaps you paid a small fortune and commissioned a top design agency to build it. It would still be worth at least what you paid for it, right?It's a sad fact that a great number of websites are worthless. Are Web Graphics Stealing Your Money? They might not be wearing a mask and carrying a gun, but if you've got images on your web pages then they could be costing you a lot more money than you think every time a visitor looks at one. That's because image files are typically the biggest bandwidth user on any web page. Ten Ways NOT to Set Up a Website-based Service Business 1. As the first step, "Hire a web designer. 9 Simple Steps to Create a Background Tiled Image Branded with Your Name You have seen those web pages where they have the name of the Name Web repeated over over over in square tiles as the background. Now by following these 9 Simple steps you too can create a web page Branded with your Name, or Company Name. Maintaining Your Business Website QUESTION: Should I build and maintain my business Web site myself or pay someone else to do the work for me? -- Wesley L.ANSWER:When you say, pay someone else to do the work for you, Wesley, I am going to assume that you are talking about hiring a professional Web site designer to do the work and not your next-door neighbor's teenage son. Ten Quick Tests To Check Your Website For Accessibility The Disability Discrimination Act says that websites must be made accessible to disabled people. So how can you check that your website is up to par? There are a number of basic tests you can make to address some of the main issues that provide a good start in increasing accessibility to your site visitors:1. 3 Reasons Why You Need URL Rewriting Module To Enchance Your Web URL rewriting are major needs for your sites that produce a dynamic pages like PHP pages with redirection pages inside your index page.What is APACHE URL Mod Rewrite ?URL Mod Rewrite is a Apache web server module that can manipulate your URL on fly when a visitors join your URL pages. Build a Strong Foundation for Creating Your First Online Identity - Notes for Beginners If you are looking for creating your online presence you should follow some of the basic requirements so that your new website will have a strong foundation. Today internet is a growing media which can provide you maximum results, which no other media can do for you. Creating Compelling Content , Write It and They Will Come In a previous ezinearticles.com article,"I Need real visitors, Not Search Spiders" we discussed the need for content. 7 Killer Ways To Increase Your Online Sales Every online entrepreneur I talk to is asking the same question, "How do I increase my online sales, NOW?"Online selling is essentially a numbers game. The more visitors to a site, the more sales that site will make. Where's Your Web Site? This simple question can take on several different forms, but if you have your own web site, all are equally important. Don't worry, this isn't a sales letter, and it's well worth a read. Why Do I Need A Web Site? Even though the Internet has been around for a long time and many people are "educated" about the Internet, most have little knowledge about what a web site is and what can it do for their business.A web site is anything and everything you want it to be. Art, Artists and the Web: Part 3--What to Put on an Artist's Website What to put your the website if you are an artist.1) The art workTry and think like a gallery hanging a show. Benefits Of An Accessible Website: Part 1 - Increase In Reach The DDA (Disability Discrimination Act) states that service providers must not discriminate against disabled people. A website is regarded as a service and therefore falls under this law, and as such must be made accessible to everyone. How Disabled Users Access The Internet In 1995 a new era of accessibility for disabled people began. The Disability Discrimination Act was passed, stating that:"It is unlawful for a service provider to discriminate against a disabled person by refusing to provide any service which it provides to members of the public. What and How to choose the Right Keywords for Mega Traffic Keywords in Search Engine Optimizing and Search Engine Marketing are the building blocks and foundation of your website on the search engines. If your foundation is weak or poorly put together your webpages won't have much to be based upon for the engines to rank with. Increase Hits to Help Increase Your Business In this day and age most businesses consider having their own website; from informational based to the most advanced and complex e-commerce site. For the large enterprise, this become a vital part of their day to day operation, their web site embeds complex applications that exchanges critical information between their partners and clients. How Worldly is Your World Wide Web? The growth in Internet usage around the world is astounding - 146% in the five years prior to March 2005. And it's not just European and North American users on the Net. My Yahoo Search - Beyond Bookmarks Yahoo has long offered email, an online calendar, notes, bookmarks, and more through their free My Yahoo service. Now Yahoo has expanded this service even more by adding My Yahoo Personal Search to the mix. |
home | site map | contact us |