O musca esaladeaza o frunza
Data: Iunie 17, 2006
1. Argy - Malena
2. Rossell feat. Emma - Dancing With Strangers (Original Mix)
3. Martin Landsky - Let Me Dance (Sebo K Remix)
4. Sikk - The Whisper (Edxs Ibiza Sunrise Mix)
5. Spit - Falling (Radio Vocal Edit)
6. Carl Kennedy Vs M.Y.N.C Project feat. Roachford - Ride The Storm (Femi and Legz Remix)
7. Mark Knight & D. Ramirez - Columbian Soul (Nice7 Remix)
8. Steve Angello and Sebastian Ingrosso - Umbrella (Original Instrumental Version)
9. Art of Tones - Praise (Original Mix)
10. Samim - Heater (Original Mix)
11. Tignino & Leo Feat Mark Kerr - How Can You Feel (D-Nox & Beckers Remix)
12. Deadmau5 - Not Exactly (Original Mix)
13. Tracey Thorn - Grand Canyon (King Unique Vocal Mix)
14. Above & Beyond feat. Tranquility Base - Oceanic (Super8 & Tab Remix)
15. DJ Wady & Patrick M feat. Carlos Bertonatti - Music Sounds Better With You (Original Mix)
16. David Michael - The Hope (Hirshee’s Big Room Mix)
17. Chaim - Carolin (Original Mix)
18. Minimalistix - Struggle For Pleasure (Dave Lambert & Elektrokid Widescreen Remix)
19. Francesco Diaz & Young Rebels - Don’t You Want Me (Thomas Gold & FD`s Club Mix)
20. Mono - Supafunk (Original Mix)
-
/**
-
*function implementing PHP's serialize() function
-
*@param: v - elements to be serialized
-
*@return: serialized string
-
*/
-
function serialize(v){
-
if(typeof(v)=='object' && v.constructor==Array){
-
var i,s='',c=0;
-
for(i in v){
-
++c;
-
s+=serialize(i)+serialize(v[i]);
-
}
-
s="a:"+c+":{"+s+"}";
-
return s;
-
} else {
-
if(Number(v)==v){
-
return 'i:'+v+';';
-
} else
-
if(typeof(v)=='string'){
-
return 's:'+v.length+':"'+v+'";';
-
}
-
}
-
}
-
/**
-
*function : print_r()
-
*@param: array-array,hass or object
-
*@param: level - OPTIONAL
-
*@returns: string - The textual representation of the array.
-
*/
-
function print_r(array,level) {
-
var dumped_text = "";
-
if(!level) level = 0;
-
//The padding given at the beginning of the line.
-
var level_padding = " ";
-
for(var j=0;j<level;j++) level_padding += " ";
-
if(typeof(array) == 'object') { //Array/Hashes/Objects
-
var obj = 0;
-
for(var item in array) {
-
var value = array[item];
-
if(typeof(value) == 'object') { //If it is an array,
-
dumped_text += level_padding + "[" + item + "] => Array\n " + level_padding + "( \n";
-
dumped_text += print_r(value,level+1);
-
dumped_text += level_padding + ")\n";
-
} else {
-
dumped_text += level_padding + level_padding + "[" + item + "] => " + value + "\n";
-
}
-
}
-
} else { //Stings/Chars/Numbers etc.
-
dumped_text = "===>"+array+"<===("+typeof(array)+")";
-
}
-
return dumped_text;
-
}
-
/**
-
*call of function
-
*/
-
alert (print_r (MyArray));
-
/**
-
*functin implementing PHP's in_array() function
-
*@param: array - search array
-
*@param: search_term - element to be searched
-
*@return: true/false
-
*/
-
function in_array (array, search_term) {
-
if (array) { //see if array exists
-
var i = array.length;
-
if (i> 0) {
-
do {
-
if (array[i] === search_term) {
-
return true;
-
}
-
} while (i--);
-
}
-
return false;
-
} else {
-
return false;
-
}
-
}





