Category Archives: Website

How To Create Simple PHP Widgets


Objective:

  • Creating a simple PHP Widget, which will allow the user to reach the result page of Google! from your site.

Requirement:

Creating the form(index.htm):

<form action=“google.php” method=“get” name=“query_form”>

<input id=“search” onclick=‘value=”" ‘ name=“search” type=“text” value=“Enter the search term” />

<input id=“submit” name=“submit” type=“submit” value=“Submit” />

</form>

PHP Script(google.php):

?php
$url=”http://www.google.com/search?q=”.$_REQUEST['search'];//Adding the user query with the URL
header(“Location:$url”);
?>

<?PHP

$url=“http://www.google.com/search?q=”.$_REQUEST['search'];

header(“Location:$url”);

?>

Download the full script, here

Even you can create more widgets just by changing the URLs. I’m mentioning few search URLs:

  • Yahoo Search : http://search.yahoo.com/search?q=
  • Live Search : http://search.live.com/results.aspx?q=
  • Youtube : http://www.youtube.com/results?search_query=
  • Answers : http://www.answers.com/topic/
  • Wikipedia : http://en.wikipedia.org/wiki/

Thanks to SachinKRaj for guiding me on this script. Do post your comments :)

An engineer by chance and a blogger by choice. Love to share my knowledge with the masses. My main focus is always on open source technologies and latest gadgets. This blog provides me the platform to cherish my passion.

More Posts - Website

Site Checker & Contact Me : New Tools on my Site


Hi Folks,

Recently I have added two new tools on my website shubhamoy.com. So let me introduce both the tools to you:

Site Checker

Site Checker by Shubhamoy

Site Checker by Shubhamoy

This is a very effective tool. It allows the user to check a particular website for malware stored or distributed by it. So next time you find a suspicious website; just check it here.

Contact Me

Contact Me - Shubhamoy

Contact Me - Shubhamoy

This is my favorite tool; it enables my users to mail there doubts, suggestions and queries to me from my site. No need to open your mail account and type. So it saves your time as well as it becomes very handy.

Finally if you find any error or a bug do intimate me. I’ll try to fix it on ASAP basis. I’ll be waiting to hear from all my visitors.

An engineer by chance and a blogger by choice. Love to share my knowledge with the masses. My main focus is always on open source technologies and latest gadgets. This blog provides me the platform to cherish my passion.

More Posts - Website

Increase Your Traffic With StumbleUpon Network

Article taken from Roseate Marketing Tips.com

Social networking websites, or social bookmark sites are a good source for traffic to your website or blog. After using social network websites, you will notice a nice increase in your blog

An engineer by chance and a blogger by choice. Love to share my knowledge with the masses. My main focus is always on open source technologies and latest gadgets. This blog provides me the platform to cherish my passion.

More Posts - Website