Listbid.com / the freelance job marketplaceadvertise
Listbid.com

Buyers: Sign Up - Create Project - Manage Account - Sign Out
Freelancers: Sign Up - Manage Account - Sign Out
General: View Open Projects - Find A Project - Send Message


Special users are users who have met high criteria for Listbid and have excellent ratings and a proven work record.

A featured project that is set as commission free, that means as a programmer, you can bid on the project and know that you will not be charged a commission.

EARN 20% of all referal amounts to this site

If you run a site that is related to programming or webmaster resources, we will pay your 20% of ALL commissions earned for all referrals and the lifetime of that referral account! This amount can add up quick.

You can easily add job listings to your site by adding the following code to the html of your page.

<script src="http://listbid.com/d_projects.cgi?java=1&text=1&f=Y&show=X&r=YOUR_USER_ID"></script>

If you have a site that can run PHP scripts, here are a couple of functions that can be used to pull the most recent projects that have been posted here.

function getpage($url){
	if(defined(curl_init)){
	$ch = curl_init();
	curl_setopt($ch, CURLOPT_URL,$url);
	curl_setopt($ch, CURLOPT_FAILONERROR, 1);
	curl_setopt($ch, CURLOPT_USERAGENT, "Mozilla (Linux, becuase we can)");
	curl_setopt($ch, CURLOPT_REFERER, "/");
	curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
	curl_setopt($ch, CURLOPT_TIMEOUT, 3); //times out after 4s
	curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
	#curl_setopt($ch, CURLOPT_POST, 1);
	#curl_setopt($ch, CURLOPT_POSTFIELDS, "?mkt=us&land=en_US&term=$t");
	$result=curl_exec ($ch);
	curl_close ($ch);
	}else{
		$result = implode("", file($url));
	}
 return $result;
}//end function

function listbid(){
	// change f=N to f=Y for featured bids.
	// change $YOUR_USER_ID to your listbid user id
	$main = getpage("http://listbid.com/d_projects.cgi?db=1&text=1&f=N&r=$YOUR_USER_ID");
	$items = explode("\n",$main);

	// change "10" to the number your want to display
	for($a=0;$a<10;$a++){
		$parsed = explode("\t", $items[$a]);
		
		$current[joburl] 	= 	trim(strip_tags($parsed[1]));
		$current[jobtitle] 	= 	trim(strip_tags($parsed[0]));
		$current[jobbids] 	= 	trim(strip_tags($parsed[2]));
		$current[jobtype] 	= 	trim(strip_tags($parsed[5]));
		$current[jobstart] 	= 	trim(strip_tags($parsed[3]));
		$current[jobend] 	= 	trim(strip_tags($parsed[4]));

	$retval[] = $current;
	
	}//rof
  return $retval;	
}//end function

Listbid.comhosting by joihost