admin

PHP Code to Convert Array to XML

<?php $input_array = array( 'article' => array( array( 'title' => 'Favorite Star Rating with jQuery', 'link' => 'http://phppot.com/jquery/dynamic-star-rating-with-php-and-jquery/', 'description' => ... Read More

Count Year,Month,Day

Count Year,Month,Day DECLARE @@FROM VARCHAR(10), @@TO VARCHAR(10), @@DIFF VARCHAR(MAX), @@FLG VARCHAR(1), @@ASSET_NO VARCHAR(MAX), @@MSG VARCHAR(MAX); SET @@MSG = ''; SET ... Read More

Get URL Variables

Example for URL http://www.example.com/index.html?hello=bonjour&goodevening=bonsoir var hash = getUrlVars(); alert(hash[‘hello’]); // prints ‘bonjour’ alert(hash[‘goodevening’]); // prints ‘bonsoir’ // Read a page's ... Read More