Mouseover Form-Style Button and
Navigation Menu Bar Generator
This free
online generator makes it so easy to create 3-D interactive form-style
buttons or a navigation menu bar to coordinate with the colors on your web
page. Open generator to view sample and create your own custom mouseover
buttons.
Thumbnail in
PHP
Depending upon how it's done, displaying a page of thumbnail images can be very cumbersome. Allowing the browser to resize images requires the client browser to download the entire, full-size image, then clumsily resize the image to a specified size. This causes the page to load very slowly and creates unavoidable distortion in the resulting images. The other option is to make separate thumbnail images for each individual image. This is fine if you only plan to display a few images, but becomes unrealistic on a large scale or a site involving dynamic images. Fortunately there are ways around these problems using the GD library in PHP.
This tutorial will outline how to write a PHP script to create thumbnail images on the fly. Since this requires the GD library, you will need an installation of PHP with at least GD 2.0.1 enabled (you can use older versions with a slight change which I will explain).
The script we will be writing receives one parameter on the query string which corresponds to the relative path of the full-size image. This address is to be placed as the src field of an image tag. An example image tag might look like this: <img src="/thumbnail.php?dir/image.png">. With no further ado let us procede to the source code.
Read More...
Copyright ©2007 BEJOOR.com All Rights Reserved
Mouseover Button Generator
At some point, most web programmers are going to need to learn databases. They’re the premier
way to store information in an online environment, and they’re often the most efficient solution. Read More...