Posts

Showing posts with the label Source Codes

PHP Mailer source code fee download

Image
Why Do We Need a Mailer Script? Before we get into explaining the code and how it works, let's see why we need a mailer script to begin with. A mailer script allows your customers to send you emails from your websites. The script gathers all the information from the form it has been attached to, processes it and sends it to your email. The Script First we want to start with the opening PHP tag and then add the subject variable and the mailto variable. This will add the subject to the email and tell the script where to send the email.<?php $emailSubject = 'Customer Has a Question!'; $webMaster = 'you@yourdomain.com'; Next we want to let the server know what information to get from the form. You need to make sure that the names of the fields are the same as what you put here, otherwise it will not gather the information properly.$nameField = $_POST ['name']; $emailField = $_POST['email']; $questionField = $_POST ['question']; The ...

AutoFTP Schedules FTP Downloads visual basic 6.0 code for free

Image
Category:   Network/Internet Type:  Applications Difficulty:  Advanced Author: Jeff Winn Version Compatibility:  Visual Basic 6 More information: This application allows you to schedule unattended FTP downloads on a recurring basis. Included is source code for a small calendar control and for a control that serves as a dialog box for connecting to remote FTP servers (thanks to Mike Glaser, his FTP class at http://www.freevbcode.com/ShowCode.Asp?ID=1593 is the starting point for this control). Instructions: Click the link below to download the code. Select 'Save' from the IE popup dialog. Once downloaded, open the .zip file from your local drive using WinZip or a comparable program to view the contents.

A Graphical Bandwidth Meter Visual Basic code for free

Image
Category :  Network/Internet Type :  Applications Difficulty :  Advanced Author :  killerian Version Compatibility: Visual Basic 6 More information: The included project is a bandwidth meter. It implements a graphical representation of network usage that looks like a tachometer. The meter is scaled to 160Kb/s maximum. Instructions: Click the link below to download the code. Select 'Save' from the IE popup dialog. Once downloaded, open the .zip file from your local drive using WinZip or a comparable program to view the contents.

Animated CSS3 Photo Stack

Image
DEMO DOWNLOAD In this tutorial, we are going to build an animated photo stack, which will use all kinds of fancy effects to transition between a set of images. The effects are implemented purely using CSS3, which means that they run smoothly on modern browsers and mobile devices. We will also make the photo stack advance automatically, so you can use it as a slideshow.

Mini AJAX File Upload Form

Image
In this tutorial we are going to create an AJAX file upload form, that will let visitors upload files from their browsers with drag/drop or by selecting them individually. For the purpose, we will combine the powerfuljQuery File Upload plugin with the neat jQuery Knob to present a slick CSS3/JS driven interface. DEMO DOWNLOAD By : Martin Angelov Source : tutorialzine.com