>FromYourCode();

All the sources codespage 80

PHP
 May 02, 2013 pm31 13:34
#59
<?
	$found = false;
	$list = SearchList();
	
	if($found)
	{
		?><td><?=DisplayList($list);?></td><?
	}
	else
	{
		die('Reading error');
	}
?>
Java
 May 02, 2013 pm31 12:25
#58
catch (SocketTimeoutException e)
{
	listeAffichage = null;
	return_code = 0;
}
catch (ConnectTimeoutException e)
{
	listeAffichage = null;
	return_code = 0;
}
catch (UnknownHostException e)
{
	listeAffichage = null;
	return_code = 0;
}
Java
 April 30, 2013 pm30 15:45
#4
thread.start();
while (thread.isAlive())
{
	SystemClock.sleep(1);		    	
}