The tutors in Wandsworth can be found here. We have ordered our tutors by the feedback on their tutoring performance. Many people are looking for a homework helper but we also offer teachers happy to give lessons for the longer term.
mysqli_php
$condition = "status='Approved' and user_type=1 and (postcode like '%SW%')";
$resusers = $SDB->getAllResult("users",$condition);
$num = $SDB->checkNumRows("users",$condition);
if($num<=0){
echo '
Opps! No Result Found.
';
}
while($tusers = mysql_fetch_object($resusers)){
$expcat = explode(',',$tusers->subject_cat_id);
$categorysel = $SDB->getAllResult("subject_category",' 1');
$category = "";
while($categoryrow = mysql_fetch_object($categorysel)){
if(in_array($categoryrow->id,$expcat)){
$category .= ",".$categoryrow->subject_category;
}
}
$expsubj = explode(',',$tusers->subject_subcat_id);
$subjectsel = $SDB->getAllResult("subject_subcategory",' 1');
$subject = "";
while($subjectrow = mysql_fetch_object($subjectsel)){
if(in_array($subjectrow->id,$expsubj)){
$subject .= ",".$subjectrow->subject_subcategory;
}
}
$from = $SDB->SingleRowDb("tutor_address","tutor_id=".$tusers->id);
$imgurlr = str_replace(" ","",trim($imgurl.$tusers->pro_img));
echo ' '.$tusers->title.' '.$tusers->fname.' '.$tusers->lname.'
Subject : '.ltrim($category,",").', '.ltrim($subject).'
Area Covered : '.$tusers->area_cover.'
'.substr($tusers->about_self,0,145).'.....