I wrote this for a web hosting client who was in the real-estate business. It allows you to put listings up for sale and for rent. Installing this script requires some knowledge of PHP and MySQL. Don't forget to create the necessary tables and to edi
This is the ASP version of params.php. The function is not as necessary in ASP as it is in PHP, but it makes translating my scripts an easier task.
This is the photo gallery that I personally use. I always post 800 by 600 high to medium quality jpegs that I optimise for the web using photoshop. I also always make my thumbnails 100 by 100. You can visit my photo gallery here. I usually put my sou
Mouse-events.html is a template for handling three basic mouse events: Moving, pressing down on a button, and releasing the button. It works in IE 5+ and should also work in NS 6+.
Drag your photos directly from your digital camera, to your online gallery. jpg-dump-photo-gallery.php?b will take the jpegs in the source folder and make thumbnails and viewable images for you. jpg-dump-photo-gallery.php without the ?b will allow yo
This function allows you to read form variables from static HTML. Combined with the document.write() method, you can actually add dynamic content to regular HTML. Given a choice, server side processing of form variables is preferable.
4 javascript cookie functions that I wrote for various website projects. I put them together in this script and used the above form to debug them. They allow you to access, assign, modify, and delete your cookies with client-side code.
This is a PHP based shopping cart which uses MySQL database as backend for storing data. This program is easy to use on any website. If this program is used by the web owners on their website it enables their site visitors to purchase products online
Items shopping cart is a database driven PayPal cart. It was written to be easily modified and integrated into an existing e-commerce site. It allows people to shop on your web site, and allows you to keep track of the details of their purchases.
Although it is possible to use include files in ASP, I found that it was not possible to do so during runtime. VBScript seems to be lacking an include function. So I wrote these 3 functions: asp_html_include(), asp_vbs_include(), and vbs_include(). T |