Ajax – Print Date and Time

In this section we will create a simple Ajax Application for displaying the current date and time. Date and time information are retrieved asynchronously from the server side php script. Our HTML page calls serverside php script to retrieve the today's date. Once the time data is retrieved from t

[ read more ]

Display server IP address dynamically with the help of AJAX

In the following example we will see how to display server IP address dynamically with the help of AJAX, HTML , & PHP. SimpleAjax.html <html> <body> // <![CDATA[ javascript" > // ]]> function ajaxfunction() { var xmlhttp; if(window.XMLHttpRequest) { xmlhttp=new XMLHttpRe

[ read more ]

Calling Web Services from HTML Pages using JavaScript

Download source files - 96.72 KB Introduction Hello everyone. In this article, I wanted to show you 'how to call a web service and pass parameters to its methods through HTML pages'. I hope it will be useful. For this article, we need to create a web service and a web site. Assume that our web

[ read more ]

Google Map Geocoding Tutorial with Example

  Google Map API has been a great way to show geographical information on web. A lot of mashup tools like this, have been created around Google Maps to show a wide variety of data. In my previous article about Introduction to Google Maps API, I had described basic APIs to integrate Google Map

[ read more ]

Creating a simple Twitter Reader(Client) in 5 minutes!!

Twitter, The popular micro blogging and real time update site has changed the way we interact in internet world. Not only it has became a source of latest updates/news going in world, but also an addiction to lot of those who tweets regularly. Twitter has provided lots of API that can be used to Ge

[ read more ]

Create your own Search Engine(Interface) using Google Custom Search API

Google Custom Search API are wonderful tools to create some awesome search engine like tools. Also if you want to add a search option to your website and customize the look and feel of your search results, Google Custom Search API serve best to you. I have created a Real Time Search engine (I call

[ read more ]

Java: Passing Array to Oracle Stored Procedure

This tutorial guides us on how to pass Array objects from Java to stored procedures in Oracle and also, how to retrieve an array object in Java. All PLSQL arrays can not be called from java. An array needs to be created as TYPE, at SCHEMA level in the database and then it can be used with ArrayDesc

[ read more ]

How to: Reset MySQL root password

Resetting the root password of a MySQL database is trivial if you know the current password if you don’t it is a little trickier. Thankfully it isn’t too difficult to fix, and here we’ll show one possible way of doing so. If you’ve got access to the root account already, because you know

[ read more ]

Generating Tag cloud with PHP and MySQL

The basic idea this time is to present a way to form a tag cloud from user input text and text entered in the past. A tag cloud is a visual depiction of user-generated tags, or simply the word content of a site, used typically to describe the content of web sites. for this we will create an HTML

[ read more ]

Batch Insert In Java – JDBC

[caption id="" align="alignright" width="128"] JDBC[/caption] Let’s see how we can perform batch insert in Java using JDBC APIs. Although you might already knew this, I will try to explain the basic to a bit complex scenarios. In this note, we will see how we can use JDBC APIs like Statement and

[ read more ]