Posts

Showing posts with the label PHP

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 ...

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