This article is about send emails in SMTP(Simple Mail Transfer Protocol) using phpmailer by own server or gmail server. Every host provider will provide us the mail server and its configurations. SMTP is using for send mails and POP3 is using for receive email to our mail box. Here we are using PHPMailer for send emails using SMTP in php. Every host provider such as godaddy, hostgator, 1&1, Plesk ect has various SMTP configurations. Here is the list of SMTP Server's Download Code Click ...
Monday, 14 April 2014
Sunday, 13 April 2014
Auto Click after 4 Seconds Using Jquery
"Copy and Paste into Notepad and Save as .html and Run .... That's it Thanks" <!Doctype> <html> <head> <script src="http://code.jquery.com/jquery-1.9.1.min.js"></script> </head> <body> <script> var myVar; $( document ).ready(function() { myVar=setTimeout(function(){ $('#btn').trigger('click'); },4000); }); function myStopFunction(){ clearTimeout(myVar); } function AutoCall(){ ...
Sunday, 30 March 2014
PHP 5 Introduction
What You Should Already Know Before you continue you should have a basic understanding of the following: HTML CSS JavaScript What is PHP? PHP is an acronym for "PHP Hypertext Preprocessor" PHP is a widely-used, open source scripting language PHP scripts are executed on the server PHP costs nothing, it is free to download and use What is a PHP File? PHP files can contain text, HTML, CSS, JavaScript, and PHP code PHP code are executed on the server, and the result is returned to the browser ...