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: Web Performance Optimization (WPO) Solution Market Set for Exceptional Growth from 2024 to 2032 openPR Where to sell a website? SitePoint Best laptops for programming of 2025 TechRadar Web Design and Development Muskegon Community College StackBlitz achieves $4M ARR in 4 weeks for their AI web development platform with Claude - Anthropic Front End Developer Skills and Responsibilities Simplilearn Rediscover the Joy of Early Web Development With XSLT The New Stack The looming disaster of AI SitePoint 23 In-Demand Full Stack Developer Skills in 2025 Simplilearn Top Dev Tools and Web Developer Trends of 2024 The New Stack Northeastern grad goes from schooling to working full time at web development startup he created Northeastern University How Much does Website Development Cost in 2022? Appinventiv The Rock It! Co. earns Gold Award in Web Development The Post and Courier Best web design software of 2024 TechRadar How do I fix this? SitePoint Latest News: Rising Senior Uses Computer Science Coursework to Thrive in Web Development Role Muhlenberg College Best Website Development Tools for 2024 DesignRush From accounting to web development: Meet this Ironhack grad making big strides in programming Refresh Miami 【react roulette】 Português Agência Brasília Best PHP Frameworks for Web Development in 2024 Simplilearn Best web development tool of 2025 TechRadar Top 10 Front End Languages: A Beginner's Guide Simplilearn CSS5 Features for Faster Web Design Analytics Insight Top Web Design Trends for 2025 Designmodo Top Web Design Trends in 2024 Netguru New Web Development Tool Pulls Design Tokens From Figma The New Stack HTML6 and CSS5: What’s New for Web Developers? Analytics Insight The birth of the Web CERN Best website design service of 2025 TechRadar 38 Web Development Stats You Should Know in 2024 Influencer Marketing Hub Generative AI for Web Developers O'Reilly Media Top 100+ CSS Interview Questions for 2025 Simplilearn Is Web Development Approaching Its Peak as We Head Into 2025? IoT Business News PhyloJS: Bridging phylogenetics and web development with a JavaScript utility library Wiley Online Library 25 Examples Of About Us Pages For Inspiration Search Engine Journal |
RELATED ARTICLES
Building eCommerce Websites that Work - Part 3 An interesting eCommerce success factor that isn't precisely overlooked, but which is often thought about more in terms of being a way of feeding the search engine spiders has to do with providing content. In a very real sense the customer's job is to consume. Writing Effective ALT Text For Images Anyone who knows anything about web accessibility knows that images need alternative, or ALT, text assigned to them. This is because screen readers can't understand images, but rather read aloud the alternative text assigned to them. Get to Know People through Websites Web sites are not just places to sell things; they are a medium where people can get insight into other people's lives. Take the musician Xavier Rudd for example. Freelance Programming is Easy to Manage There are several reverse bid freelance sites out there. Beyond the big ones, smaller ones are popping up each day. The Top Ten Benefits of Having a Web Site Do you need a web site? Are you considering getting one but are unsure? Here we take a look at the main reasons why a web site could be beneficial to your organisation.1) It will give you the competitive edgeIf you do not have a web site people cannot visit it - an obvious point you might say. Cost Effective and Powerful Dynamic Websites w. Fantastico Web Hosting If you are developing your website on a host that charges less that $5 a month, make plenty of backups as you are likely to loose your website files when the webhost goes out of business without notice. Indeed, be extremely wary of any such host. 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". The Internet Road Map 1) Data CaptureOne easy way to collect e-mail addresses and permission is via a signup box on your website. Place your signup box in a visible place on your homepage, and other appropriate pages, where visitors might choose to opt-in. What is The Google Toolbar? No matter what browser you may want to use, you should consider using Google's toolbar. Google. Instant Relevant Web Site Content - No Its Not a Bot In about the Time it takes to Watch a Reality TV Show (About 1 Hour) I added 10 Pages of Relevant Content to my Web Page without a Bot.Adding content to your Page Fast is Easy with the Use of Free Articles you Can Reprint. 4 Steps to Selling More With Your Web Site Most web sites are more like stage sets than real buildings; they make a good impression and they look substantial at first, but when you open a door, you end up back stage in the dark. They don't generate large numbers of leads, help build relationships with prospects or generate the desired volume of sales. Linking Out is Good Many websites I come across don't have a single link to another website. Ask the webmaster why not, and the answer you get is simple enough: "If I link to other websites people might leave my site. Bring Your Visitors Back Clamoring for More! Maintain and Improve Your Web Site Weekly - Part 1 80% of your Web site is Maintenance!Once your Web site is up, you must maintain it. That means changes, and each time you make a change, you may make a mistake. Creating a Sticky Web Site When used to describe a web site, the term "sticky" refers to a site that is able to get viewers to stay at the site longer and come back frequently. Sticky web sites are more likely to turn viewers into customers. How to Make Your Own Free Website in 8.5 Minutes or Less Designing and creating your own website does not have to be a laborious effort that takes weeks to complete. Instead, in less than 9 minutes you can have your web site designed and up and running as long as you have a host located and know what you want to upload to your web page. Building a Web Store on Shoestring Budget in less than Four Hours Starting a business online is no longer as difficult as it used to be! Now, there are plenty of interesting business ideas that anybody can pick up from various Internet resources. Startup related cost, which used to deter many in taking action, has become negligible. Lead Generation How to -- 10 Tips On Generating More Internet Sales Leads Many millions of dollars are being wasted on promoting and sending traffic to ineffective lead generation websites. Here are my top 10 tips to make your site generate more leads for you and your company. 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. Getting a Web Site Can Be Fast, Easy, and Inexpensive When You Know Your Options So what do you do if need to get a web site but you're not sure how to go about getting one. The good news is you have several options. 1 Simple Solution to All Internet Marketers about Their Website Design Needs It is an undeniable fact that not everybody is keen and knowledgeable to create an above average looking website. It is also true that it is something learnable, but it might take a certain learning time span in order to grasp the minimum ability to create an over than average website. |
home | site map |
© 2006 |