Tie-Sheet – BASKETBALL

First Round Matches Match 1 Bhakundo Bhoot Vs The Amigos 7:00 AM February 10, FridayResults: Sarvesh Mainali lead the team to victory with 22 Points. AMIGOS WINS 44-17 Match 2 MBA TERM 2 Vs The Amigos 3:30 PM February 10, FridayResults: Sarvesh Mainali again showed the class with individual 18 […]

Tie Sheet – Futsal

Futsal is being played Saturday (11th February 2012) Reporting Time for all teams 1:30 PM First RoundMatch 1 Bhakundo Bhoot Vs MBA Term 3 – 2:15 PMMatch 2 Term 5 United Vs Base Sidaz 2:35 PMMatch 3 Underground CrooksVs ACE Bulls A 2:55 PMMatch 4 MBA Term 2 Vs The […]

Tie Sheet – Table Tennis

Venue – ACE, Sinamangal GIRLS SINGLEMatch 1 – Preeti Limbu Vs. Subhechha Manandhar – 11th February, Saturday 8:00 AMMatch 2 – Devina Thapa Vs. Priti Shrestha- 11th February, Saturday 8:15 AM Final Match – Subhechha Manandhar Vs Devina Thapa – 11th February, Saturday 8:30AM MIXED DOUBLESFirst RoundMatch 1 – Suraj […]

Open CSV File using PHP

// place this code inside a php file and call it f.e. “download.php” $_GET[‘download_file’]=’websiteData.csv’; $path = $_SERVER[‘DOCUMENT_ROOT’].”/wedev/”; // change the path to fit your websites document structure $fullPath = $path.$_GET[‘download_file’]; if ($fd = fopen ($fullPath, “r”)) { $fsize = filesize($fullPath); $path_parts = pathinfo($fullPath); $ext = strtolower($path_parts[“extension”]); switch ($ext) { case […]

array_slice

$input = array(“red”, “green”, “blue”, “yellow”); $splice1=array_splice($input, 1, count($input), “orange”); $splice2=array_splice($input, 1, count($input)-1, “mango”); print_r($splice1); echo ”; print_r($splice2);

PHP Array Pagination

$path=getcwd().”\images”; if(is_dir($path)){ $arrayPhotos=array(); if ($dh = opendir($path)) { while (($file = readdir($dh)) !== false) { if($file!=”..” && $file!=”.” && strtolower($file)!=”thumbs.db”) if(!in_array($file,$arrayPhotos)) array_push($arrayPhotos,$file); } closedir($dh); } } asort($arrayPhotos); // Include the pagination class include ‘pagination.class.php’; // Create the pagination object $pagination = new pagination; // If we have an array with […]

Begin typing your search term above and press enter to search. Press ESC to cancel.

Back To Top