Slim function in php

Slim is a simple powerful PHP 5 framework to create RESTful web applications. The Slim micro framework is a template language whose goal is reduce the syntax to the essential parts without becoming cryptic. <?php require ‘Slim/Slim.php’; Slim::init(); Slim::get(‘/hello/:name’, function ($name) { echo “Hello $name”; }); Slim::run(); ?> How to install Slim

Theory About Bulk Emails

Electronic mail (e-mail), is a method of exchanging digital messages from an author to one or more recipients. Modern email operates across the Internet or other computer networks. An email message consists of three components, the message envelope, the message header, and the message body. The message header contains control information, including, minimally, an originator’s … Read more

How to Setup Elastic Load Balancing on AWS

Application Setup on Google App Engine

Run your web apps on Google’s infrastructure. Easy to build, easy to maintain, easy to scale. https://cloud.google.com/console#c=l 1) Register a free account here https://appengine.google.com/. 2) Create an Application here https://appengine.google.com/start/createapp. 3) Download Google App Engine SDK for Java from here http://code.google.com/appengine/downloads.html#Google_App_Engine_SDK_for_Java. 4) Unzip appengine-java-sdk-1.4.2.zip in your favorite drive like “D:\appengine-java-sdk” 5) Now download apps svnmedia.zip … Read more

Google Map – Info Window

Demo Contact me for google map customization 🙂 Never feel sad on losing anything in ur life, Because whenever a Tree loses its leaf, A new leaf is ready to take it’s place…

Custom Google Search – setQueryAddition

Google Custom Search service provide customized search for web on your site or blog. We can filter Google Custom Search results on filetype like PDF 🙂 You have to initiate below JavaScript on event… // create a tabbed mode search control var tabbed = new GSearchControl(); tabbed.setResultSetSize(GSearch.LARGE_RESULTSET); // add an additional term to the query … Read more

How to clean malware from website?

Malware, short for malicious software, is a software designed to secretly access a computer system without the owner’s informed consent. The expression is a general term used by computer professionals to mean a variety of forms of hostile, intrusive, or annoying software or program code. Sucuri SiteCheck is a free & remote scanner. SCAN Website … Read more

json_add for php

JSON (JavaScript Object Notation) is a lightweight data-interchange format. 1. Easy for humans to read and write. 2. Easy for machines to parse and generate. 3. Collection of name/value pairs. 4. Used for C, C++, C#, Java, JavaScript, Perl, Python, and many others. 5. Compatible with universal data structures – array, vector, list, or sequence. … Read more