Mr. Francis from Rajamudi Idukki had a stroke 3 years back and was bed ridden for few years. By the prayers and the Grace of God he is now able to walk around however in the recent past his blood counts started decreasing making him week. He developed a fracture on his backbone due to dislocated disk which causes immense pain and is under treatment in Kottayam medical college. However he is unable to continue his treatment due to lack of money. Requesting our CHN partners to extend their support !
[insert_php]
global $wpdb, $post;
$projectid = get_field( “project_id”, $post->ID );
$table_name = $wpdb->prefix . ‘donor_list’;
$res = $wpdb->get_results(“SELECT * FROM “.$table_name.” where anonymous = ‘No’ and payment_status = ‘Completed’ and projects_sponsore = ‘”.$projectid.”‘ order by id desc”);
if(!empty($res)) {
echo “”;
$i=1; foreach($res as $re) {
if($i % 2 == 0){
$class = ‘success’;
} else {
$class = ‘info’;
}
if($re->donor_status == 1) { $payment_status = ‘Paid’; } else { $payment_status = ‘Pledged’; }
echo “”;
$i++; }
echo ”
global $wpdb, $post;
$projectid = get_field( “project_id”, $post->ID );
$table_name = $wpdb->prefix . ‘donor_list’;
$res = $wpdb->get_results(“SELECT * FROM “.$table_name.” where anonymous = ‘No’ and payment_status = ‘Completed’ and projects_sponsore = ‘”.$projectid.”‘ order by id desc”);
if(!empty($res)) {
echo “”;
$i=1; foreach($res as $re) {
if($i % 2 == 0){
$class = ‘success’;
} else {
$class = ‘info’;
}
if($re->donor_status == 1) { $payment_status = ‘Paid’; } else { $payment_status = ‘Pledged’; }
echo “”;
$i++; }
echo ”
FundRaising Honor Roll | |||
---|---|---|---|
S.No. | Name | Donation Amount | Payment Status |
“. $i .” | “. $re->name .” | $ “. $re->donation_amount .” | “. $payment_status .” |
“;
}
[/insert_php]