Anjali (Not real name) is a 9th grader student from Ezhumattoor Kerala. Her father is a painter and mother does not work. She has a 5th grader brother who attends a local school. Anjali is a bright student and CHN has been helping this family to educate her in a convent school at Chengaroor, Kerala , India. This family is seeking assistance with hostel fees and other schooling expenses for Anjali. Appreciate any assistance you can provide for this family.
[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 ”
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]