Connector Net




MOST RECENT TASK

“;
$taskrslt = mysqli_query($con, $taskquery);
if(!$taskrslt)
{
echo “FAILURE TO COLLECT TASK RESULTS”;
}
$taskrow = mysqli_fetch_array($taskrslt);
if(mysqli_num_rows($taskrslt) > 0)
{//get the first task from the DB and post it!
echo “Job opportunity from “.$taskrow[1].” “.$taskrow[2].”


.’


.”
.$taskrow[3].” “.$taskrow[4].”

“.$taskrow[5];
if((isset($_SESSION[’email’])) && ($_SESSION[’email’] == $taskrow[5]))
{
echo ‘



‘;
}

‘;
} else {
echo “It seems there are no posts currently…”;
}
?>