Save info   Get password
Home Submit your blog Edit Account Rules RSS-Archive Contact


Streaming MP3 using Adobe Flash Media Server
2008-03-06 11:05:11
Unlike progressive playing mp3 file from internet streaming mp3 is somewhat different. This article will discuss on streaming Mp3 files using Flash Media Server.
Read more: Streaming , Adobe

Database Class in PHP5
2008-03-06 10:47:10
In PHP5 due to Object Oriented Concepts, the database connection to MySql will be using Object Oriented concept. This tutorial will guide you creating an database class that will connect to Mysql database and retrieve records from them. This tutorial does not cover exception handling in case of any database connection error as will have [...]
Read more: Database

HTTP Form POST Request using AJAX and Servlet
2008-03-04 23:28:32
In Java World Servlets are popularly used for Model View Controller(MVC) Design Pattern. This article will guide you on writing AJAX based application that will post data to Servlet and will fetching the computed data from the Servlet. With this approach the page will get the updated content from the server without refreshing the jsp/html [...]


Ajax Programming with JSP and Servlets
2008-03-03 02:10:41
In Java World Servlets are popularly used for Model View Controller (MVC) Design Pattern. This article will guide you on writing AJAX based application for fetching data from the Servlet and showing it on JSP page.
Read more: Programming

FORM POST in PHP using AJAX
2008-02-28 05:15:13
This example demonstrates HTTP FORM POST complete HTML form to the server and displaying the response using AJAX .


Explore Linux Partitions from Windows
2008-02-28 00:40:57
Sometime there is an urgent need to access the Linux Partition from Windows . This may be for getting important data or your linux partition has crashed and you want to take the backup of the data. But no need to worry there is an Open Source Software available for Windows that can access your Linux [...]


Singleton Class in PHP 5
2008-02-27 11:10:19
With OOPS in PHP 5 the whole bunch of Object Oriented Design Pattern will now come into the PHP 5 programming. The most famous and commonly used is Singleton Class. The main advantage of this Pattern that is allows only one instance of an object to be used across the web application. This pattern is [...]


Upgrading to Firefox 2 on Fedora 6
2008-02-25 06:00:06
Fedora Core 6 comes with Firefox 1.5 package but if we want to upgrade to Firefox 2.0 it becomes an tedious task as yum is unable to upgrade Firefox and the ‘Check for updates’ Menu is disabled in Firefox 1.5. To perform the upgrade we will not remove the existing package but will install the [...]
Read more: Fedora

Check For Special Characters in JavaScript
2008-02-25 05:34:17
Sometimes situation arises when you want to check for special characters in a string. But in JavaScript there is no direct methods that can check for Special Characters . To achieve this will have to use the JavaScript programming to develop an code that will perform the job of checking for special characters. The main part [...]
Read more: Check

Debugging JavaScript Code for Errors
2008-02-18 11:08:05
Debugging JavaScript code has always been an headache for the JavaScript programmers. This is mainly due to improper errors given by the browsers for errors in JavaScript code. You cannot rely on the line no given by the browser for JavaScript code errors but you need to know some techniques on debugging the same. This [...]
Read more: Errors

FAQ on AJAX Technology
2008-02-18 11:03:29
AJAX has become an hot technology with Web2.0 but before starting AJAX Programming developers needs to know some important FAQ on AJAX. Q) Ajax an Microsoft Technology ? A) Absolutely No, Ajax is an cross browser technology. It is browser dependent and uses JavaScript.
Read more: AJAX

Data Communication between JavaScript and Adobe Flash Movie
2008-02-16 06:01:36
Passing data to Adobe Flash Movie using JavaScript In Web2.0 arena we frequently use Adobe Flash Movie and JavaScript in our web page. We often has the requirement to pass data to the Adobe Flash movie at runtime. This can be achieve through communication between JavaScript and adobe flash swf move. “setVariable” is a method available [...]


Two Dimensional Arrays in JavaScript
2008-02-09 12:07:38
JavaScript gives you One-Dimension Array creation feature, But if we want to perform 2d Array calculation then we will have to create the 2d array then JavaScript does not have any ready made function for 2D Array but we can create 2D Array through JavaScript programming. This tutorial will guide you through creating an 2d [...]
Read more: JavaScript

Exploring Magic Methods in PHP 5
2008-02-09 11:46:19
With PHP 5 Object Oriented Programming seems to becoming a reality in PHP but we all know that in PHP a variable can take any form depending on the data passed to it. Also PHP automatically creates variable and assigns values to it even is the variables are not defined. But in Object Oriented Programming [...]
Read more: Methods , Magic , Exploring

PHP 5 Tutorial - __clone Magic Method
2008-02-09 11:32:26
In PHP 5 when you assign one object to another object creates a reference copy and does not create duplicate copy. This would create a big mess as all the object will share the same memory defined for the object. To counter this PHP 5 has introduced clone method which creates an duplicate copy of [...]
Read more: Tutorial , Magic

Showing Dynamic DIV above SELECT Box
2008-01-25 10:53:38
This article will teach you on showing Dynamic Div Box above Select Control using JavaScript. Basically this problem is specific for Microsoft Browser i.e. Internet Explorer, In Microsoft Internet Explorer the POP UP DIV goes in background if there was any SELECT control and because of this the html content shown inside the div was [...]


Create Your Own Google Gadget
2008-01-23 11:47:16
This tutorial will guide you on how to make your own Google Gadget for iGoogle Page. If you still not seen any Google Gadget on iGoogle you can see it online at iGoogle Page.


Execute FFMPEG Command in PHP
2008-01-08 10:44:22
It has been a nightmare for me searching for executing FFMPEG command from PHP. But finally i got the solution for executing ffmpeg from php script. This article will guide you on how to convert videos and audios using FFMPEG from within the PHP scripts.


Converting Audio/Videos using FFMPEG
2007-12-10 03:40:45
I was simply ignoring writing this articles but after writing articles on Installing FFMPEG on Linux i couldn’t resist on writing this article. Anyways this article will guide you on how you can convert audio video formats using FFMPEG.
Read more: Audio

CrossBrowser Java Plugin detection using JavaScript
2007-12-07 10:13:40
In this article we will understand how to detect whether the client browser has Java Plugin Installed. This process involves communication between Java and JavaScript .


HTTP POST File Content in JAVA
2008-03-31 05:42:29
In Web scenario we have two method to send content to other page “GET” and “POST”. Though in “GET” method developers enjoys the flexibility of checking the content getting passed but there is limit for sending data. As compare to “GET” method “POST” enjoys the flexibility for sending unlimited data and using this method we [...]
Read more: Content

Uninstall Java Development Kit on Linux Systems
2008-03-31 05:28:50
Sometimes you want JDK5 compiler source and JDK6 is installed on your machine, oops in this case if JDK5 is not installed then JDK5 cannot be installed as newer version is already installed. Now in this scenario we have to uninstall JDK6 so that JDK5 can be installed. There are no specific uninstall file provided [...]
Read more: Uninstall , Development , Linux , Systems

JavaScript XML Parser Properties
2008-04-15 05:26:33
XML Parser in JavaScript comes with predefined properties that allows us to read the XML content. This article will go through all the properties getting used in the XML Parser Object. Note: All XML Object properties are case-sensitive. The various properties of XML Parsers are: documentElement documentElement property will always point to the root element of the xml document Syntax: [...]
Read more: XML , Properties

JavaScript XML Parsing on Mozilla Firefox / Opera Browsers
2008-04-16 08:41:52
Today XML has become the backbone of many Web Applications. In JavaScript we can parse xml files at client end. But this parsing is different varies with browsers. In the tutorial we will understand how we can parse an xml file in JavaScript for Mozilla Firefox , Opera Browsers. XML Parsing in Firefox/Opera Browsers: Mozilla Firefox and Opera [...]


JavaScript Tutorial - Implementing Stack Object in JavaScript
2007-11-22 02:28:21
Stack acts as a temporary data storage using LIFO(Last In First Out) principle. Stack can perform two basic operation PUSH and POP. Push operation adds an data to the top of the stack and all the remaining data below it. Pop operation removes and returns the current data on the top node of the stack. [...]
Read more: JavaScript , Tutorial , Stack , Object

How IT companies can curb Employee Attrition Rate
2007-11-18 06:17:04
Now days with the huge demand of Software Professionals around the world and with the company willing to pay high salary package software professional tend to switch companies. But companies can reduce the employee attrition rates by taking few steps. Picnic / Outings Too much work and stress takes a toll on the body and smaller chunk [...]
Read more: Employee

PHP 5 Tutorial - __toString() Magic Method
2007-11-16 12:41:02
This tutorial will guide you through the __toString() Magic Method. The __toString() Magic method in PHP5 get called while trying to print or echo the class objects. This method can be used print all the methods and attributes defined for the class at runtime for debugging. Also this method can be used to give error [...]
Read more: Tutorial

JavaScript - Parsing XML in JavaScript
2007-11-15 12:43:23
Today XML has become the backbone of many Web Applications and like Server Side Programming language extensively supporting XML. JavaScript also supports parsing xml files at client end. The only thing the JavaScript programmers would love is to write xml files in JavaScript. In the tutorial we will understand how we will parse an xml [...]


JavaScript Tutorial - Search inside Array without Looping
2007-11-15 12:06:35
While doing programming we often want to search for specific content inside the array and in general programmers would perform a looping operation on the array to search for the specific content. But below is the small code snippet written in JavaScript that can search for content in array without using Loops. <script type="text/javascript"> var i=1000; var arr_obj [...]
Read more: Tutorial , Search , Array

PHP 5 Tutorial - Parsing XML in PHP 5 using SimpleXML
2007-11-15 11:47:37
PHP5 has come up lot of improvement when it comes to XML parsing as compared to parsing XML in PHP4. PHP5 has come up with a new function called SimpleXML for parsing XML files. This article will guide the PHP programmers on how to use the SimpleXML function in PHP5. Advantages of SimpleXML You can now directly [...]
Read more: Tutorial

Page 1 of 3 « < 1 2 3 > »
eXTReMe Tracker