Skip to content

Instantly share code, notes, and snippets.

View fsalehpour's full-sized avatar

Faramarz Salehpour fsalehpour

View GitHub Profile
private static function sendDeleteRq($h, $u) {
$client = new Client();
$rq = $client->delete($u, array('h' => $h));
$mn = $rq->send();
return $mn;
}
@fsalehpour
fsalehpour / sort.cpp
Created June 8, 2011 04:35
Sorting using array in an object
/*
* P:#33
* Write a programme to sort n numbers.
*/
#include <iostream.h>
#include <conio.h>
class Array
{