Directory
Technology
Blog Details for "Techie Zone"
Techie ZoneTechie ZoneArticles and discussion on Ajax Tutorials, PHP 5 Tutorials, Mysql Tutorials, Javascript Tutorials, Java Tutorials, JSP Tutorials, Servlets Tutorials, Career Tips and Flash ActionScript Programming and Object Oriented Programming Articles
Showing Dynamic DIV above SELECT Box
2008-01-25 17:53:00 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 ... More About: Javascript
Create Your Own Google Gadget
2008-01-23 18:47:00 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. More About: Research , Google Gadgets , Create
Execute FFMPEG Command in PHP
2008-01-08 17:44:00 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. More About: Command
Converting Audio/Videos using FFMPEG
2007-12-10 10:40:00 I was simply ignoring writing this articles after writing articles on Installing FFMPEG on Linux. But i couldn’t resist on writing this article. Anyways this article will guide you on how you can convert various audio video formats using FFMPEG. More About: Videos , Audio , Vert
CrossBrowser Java Plugin detection using JavaScript
2007-12-07 17:13:00 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. More About: Javascript , Detection , Browse
JavaScript Tutorial - Implementing Stack Object in JavaScript
2007-11-22 09:28:00 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. ... More About: Tutorial , Java , Script , Javascript , Object
How IT companies can curb Employee Attrition Rate
2007-11-18 13:17:00 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. More About: Companies , Career , Employee , Rate
PHP 5 Tutorial - __toString() Magic Method
2007-11-16 19:41:00 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 ... More About: Tutorial
JavaScript - Parsing XML in JavaScript
2007-11-15 19:43:00 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 ... More About: Javascript
JavaScript Tutorial - Search inside Array without Looping
2007-11-15 19:06:00 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. ... More About: Tutorial , Search , Javascript , Inside , Array
PHP5 Tutorial - Parsing XML in PHP5 using SimpleXML
2007-11-15 18:47:00 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. More About: Tutorial , Simplex
PHP5 Tutorial - Not Pure Object Oriented Programming Approach
2007-11-14 19:30:00 PHP development team has come up with great improvement in PHP5, one such feature is the introduction of Object Oriented Concept in PHP5, But it lacks the pure Object Oriented Programming concept. In this article i will be discussing few bugs that exists in the OOPS implementation in PHP5. The main culprit that is making ... More About: Tutorial , Pure
JavaScript Tutorial - Sorting Numeric Array
2007-11-14 18:53:00 In JavaScript whenever you want to sort an array it gets sorted alphabetically. This means that numbers are sorted on the basis of the first digit occurring in number system(1 - 9) and not by comparing the value. So if i want to sort an array having values 10,12,11,20,2,25,30 gets sorted to 10,12,11,20,2,25,30 using inbuilt ... More About: Tutorial , Javascript , Numeric , Sorting , Array
PHP 5 Tutorial - __autoload Magic Method
2007-11-09 07:02:00 This tutorial will guide you through the __autoload() Magic Method . The __autoload() magic method of PHP5 get automatically called whenever you try to load an object of class which resides in separate file and you have not included those files using include,require and include_once. It is recommended to use the filename as that of the ... More About: Tutorial
PHP5 Tutorial - __autoload Magic Method
2007-11-09 07:02:00 The __autoload() Magic Method of PHP5 get automatically called whenever you try to load an object of class which resides in separate file and you have not included those files using include,require and include_once. It is recommended to use the filename filename as that of the class name. ... More About: Tutorial
PHP 5 Tutorial - __unset() Magic Method
2007-11-09 06:52:00 This tutorial will guide you through the __unset() Magic Method . The __unset() magic method of PHP5 is called whenever unset function of PHP is called to clear an undeclared data member. With the help of this method we can check for the undeclared variables in the code. We can also set appropriate error message while ... More About: Tutorial
PHP5 Tutorial - __unset() Magic Method
2007-11-09 06:52:00 The __unset() magic method of PHP5 is called whenever unset function of PHP is clear an undeclared data member. With the help of this method we can check for the undeclared variables in the code. We can also set appropriate error message while testing for variable names getting used in the Class. ... More About: Tutorial , Magic , Method
PHP5 Tutorial - __isset() Magic Method
2007-11-09 06:46:00 The __isset() magic method in PHP5 is called whenever isset function of PHP is used to check for undeclared data member. With the help of this method we can check for the undeclared variables in the code. We can also set appropriate error message while testing for variable names getting used in the Class. ... More About: Tutorial , Magic , Method
PHP 5 Tutorial - __isset() Magic Method
2007-11-09 06:46:00 This tutorial will guide you through the __isset() Magic Method . The __isset() magic method in PHP5 is called whenever isset function of PHP is called to check for undeclared data member. With the help of this method we can check for the undeclared variables in the code. We can also set appropriate error message ... More About: Tutorial
PHP5 Tutorial - __wakeup() Magic Method
2007-11-07 17:54:00 The __wakeup() Magic Method of PHP5 gets called when unserialize operation on object is performed. This method allows us to restore the serialized data to its normal form. In __wakeup method it expects the variable that holds the serialized object. More About: Tutorial
PHP 5 Tutorial - __wakeup() Magic Method
2007-11-07 17:54:00 This tutorial will guide you through the __wakeup() Magic Method . The __wakeup() magic method of PHP5 gets called when unserialize operation on object is performed. This method allows us to restore the serialized data to its normal form. Syntax: function __wakeup() { ... } Example - __wakeup magic method Call < ? class magicmethod { private $setName; function __sleep() { echo "Performing Clean-Up Operation Before Serializing Data "; $this->setName ... More About: Tutorial
PHP 5 Tutorial - __sleep() Magic Method
2007-11-07 17:28:00 This tutorial will guide you through the __sleep() Magic Method . The __sleep() magic method in PHP5 gets called while serializing an object in PHP5. Serializing is required to pass complex data across the network or PHP pages. It is also used to store data(files, database, cookies etc). With this magic method call we can define ... More About: Tutorial
PHP5 Tutorial - __sleep() Magic Method
2007-11-07 17:28:00 The __sleep() magic method in PHP5 gets called while serializing an object in PHP5. Serializing is required to pass complex data across the network or PHP pages. It is also used to store data(files, database, cookies etc). With this method call we can define the way how the data object will be stored. The __sleep() ... More About: Tutorial , Magic , Method
PHP5 Tutorial - __toString() Magic Method
2007-11-06 15:24:00 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 message while somebody tries to print the class details. ... More About: Tutorial , Method , Tring
PHP 5 Tutorial - __call() Magic Method
2007-11-06 15:14:00 This tutorial will guide you through the __call() Magic Method . The __call Magic method in PHP5 get called when accessing an undeclared or undefined methods of an class. With this magic method the programmer can keep track on the undeclared method which are not defined inside the class. Syntax: < ? function __call($data,$argument) { //$data holds the name of the ... More About: Tutorial
PHP5 Tutorial - __call() Magic Method
2007-11-06 15:14:00 The __call Magic method in PHP5 get called when accessing the value of an undeclared or undefined methods of an class. With this method the programmer can keep track on the undeclared method call which are not defined inside the class. ... More About: Tutorial , Method
PHP5 Tutorial - __get() Magic Method
2007-11-06 02:30:00 The __get Magic method in PHP5 gets called when accessing the value of an undeclared or undefined attributes of an class. With this method the programmer can keep track on the variables call which are not defined inside the class. More About: Tutorial , Method
PHP 5 Tutorial - __get() Magic Method
2007-11-06 02:30:00 This tutorial will guide you through the __get() Magic Method . The __get Magic method in PHP5 gets called when accessing the value of an undeclared or undefined attributes of an class. With this method the programmer can keep track on the variables which are not defined inside the class. Syntax: function __get($data) { //$data ... More About: Tutorial
PHP5 Tutorial - __set() Magic Method
2007-11-05 18:20:00 The __set Magic method in PHP5 gets called when accessing an undeclared or undefined attributes of an class. With this method the programmer can keep track on the variables call which are not defined inside the class. More About: Tutorial , Method
PHP 5 Tutorial - __set() Magic Method
More articles from this author:2007-11-05 18:20:00 This tutorial will guide you through the __set() Magic Method . The __set() Magic method in PHP5 gets called when setting the value to an undeclared or undefined attributes of an class. With this method the programmer can keep track on the variables which are not defined inside the class. Syntax: < ? function __set($data,$value) { //$data - holds the name ... More About: Tutorial 1, 2, 3 |



