PHP Code (33)
JSP Code (6)
ASP Code (5)
CGI Perl Code (3)
JavaScript Code (63)
VB Script Code (20)
Shell Script Code (31)
Python Code (34)
WinRunner Code (1)
HTML DHTML XHTML Code (13)
XML (43)
Scripts_Markup Code AllOther (5)
Write a function that takes an array of integers and returns that array rotated by N positions. For example, if N=2, given the input array [1, 2, 3, 4, 5, 6] the function should return [5, 6, 1, 2, 3, 4]
What is XML Parser?
How do you set a global variable inside a function?
how to create a Custom Scrollbar
What software is available for XML?
program to show a progress bar
Which framework is best in php among Smarty, Cakephp, Joomla, Drupal, Zend or Something else...? If any then Why?
snippet to prevent submission of form when certain/any validations got failed
What is well formed XML document?
How can a procedure fetch data from FTP? I need a general code for this..
Create a ViewState Property?
Can someone please explain more about how the XML Gateway works and what its purpose is?
advance the focus to next consecutive fields when Enter Key is pressed
Write a function that takes as input a binary tree, and prints out each level of the tree on a newline. For example: a / b c / / d e f will output: a b c d e f
Given a string=”me,I,myself”; .Using javascript only create an array out of this string and then send a POST request to the url “record.php” without reloading the page. The post key parameters should be n1,n2 and n3 respectively.