Friday 15 February 2013

Different Google Games... Try It and Enjoy

1. Just open this URL http://www.funny-google.com/ and you can See two text box go to second text box and type your name and see what is happening.

2. Go to google page and type "do a barrel roll" its more interesting and try it and enjoy.

3. Open your browser and type the google URL in reverse like http://elgoog.im and see you google home page.

If your enjoyed this give your comment

Tuesday 12 February 2013

Google Custom Search Engine With Your Website

Easy 3 Steps to create a Google Custom Search Engine With Your Website

Type 1:

   1. Login with your Gmail account in the below link
                                  http://www.google.com/cse/

   2. Enter your Valid Website Name in SITE TO SEARCH text area and click CREATE BUTTON.

   3. Google will generate and produce a coding, copy that coding and paste it in to your website coding and now run your website in browser, your website will appear with GOOGLE CUSTOM SEARCH Engine bar..

Type 2:

<form id="searchbox" action="http://www.google.com/search">
<input type="hidden" name="cx" value="Replace Value provide by google CSE" /> 
<input type="hidden" name="cof" value="FORID:0" />
<input name="q" type="text" size="40" />
<input type="submit" name="sa" value="Search" />
<img src="http://www.google.com/coop/images/google_custom_search_smnar.gif" alt="Google Custom Search" />
</form>

Thank You,
If this posting useful then comment.

          

Reference Error: $ is Not Defined

Javascript Reference Error: $ is Not Defined:


        If you are using javascript in your php or html file then include JS file with the php or html page like below...

For php with codeigniter Framework:

 "<script type="text/javascript" src="<?php echo base_url(). 'public/jquery.js'; ?>"></script>"

For HTML:

 "<script type="text/javascript" src="public/jquery.js"></script>"

Thursday 7 February 2013

INFORMATION SCHEMA

Find Column Name in MYSQL using INFORMATION_SCHEMA:

         Select COLUMN_NAME from INFORMATION_SCHEMA.COLUMNS where TABLE_NAME = 'tablename';