HTML-Market

Website Development

 Upload Multiple Images with PHP

by: Shane Goodwin | Mar 2, 2007 | 0 Comments

Learn how to create a standalone application for uploading images to your website. This application uses an "iframe" to achieve an AJAX-like method for easily uploading multiple images to your server without the need for an FTP client. Images are automatically uploaded one at a time and displayed as thumbnails so you can keep track of which ones have already been uploaded. This tutorial is an enhanced version of Asynchronous image file upload without AJAX by Martin Konicek. The enhancements include being able to preview "gif" and "png" images in addition to "jpg" images, notification if the image already exists, an error message in case the upload fails, and image size restrictions.

 Liquid Boxes with Rounded Corners

by: Shane Goodwin | Feb 2, 2007 | 0 Comments

There are a number of tutorials on the internet that teach you how to create colored boxes with rounded corners. Many of these require the use of Javascript which unnecessarily bloats your HTML code. Some, such as this one, use only CSS and HTML to create this rounded effect. A few even show you how to create these rounded corner boxes with fluid, changing widths. However, none of them that I know of teach you how to do all the above, add borders to the boxes, and use multiple background colors. None, of course, except this one.

 Creating A Search Application

by: Shane Goodwin | Jan 31, 2007 | 0 Comments

Learn how to create a site search for database-driven websites. This tutorial assumes that the information you wish to search for is contained in a MySQL database. This search application will not only locate the documents containing the text in a search, but will also order the results according to how many times the words appear in the selected documents and offer boolean search commands. This tutorial assumes a basic knowledge of PHP and MySQL.

 How To Build A Live Stock Ticker - Part 2

by: Shane Goodwin | Jan 23, 2007 | 1 Comment

In part 1 of this series, we built a "widget" to display a number of stock quotes on a website. In this part of the series, we will be harnessing the power of AJAX to automatically update those quotes at a predetermined interval. It is recommended, although not necessary, that you understand the XMLHTTPRequest object before reading this tutorial. It is necessary to be very familiar writing HTML and CSS code.

 How to Build A Live Stock Ticker - Part 1

by: Shane Goodwin | Jan 22, 2007 | 2 Comments

In this two-part tutorial, we will be building a stock ticker to retrieve and display stock quotes from Yahoo Finance. In part 2 we will learn how to make the quotes update automatically using AJAX. This stock ticker can easily be included as part of your site since all of the necessary code resides in a single div. It is recommended that you are comfortable writing code for CSS and HTML before continuing this tutorial. This is a PHP script so it would be helpful to understand PHP, but we will be going over the PHP code line by line so if you are not familiar with it, that's OK.


Tutorial Categories

  • CSS - advanced CSS techniques
  • PHP & MySQL - create dynamic, database-driven websites
  • AJAX - combine web technologies for incredible interactivity