Compassionate Hearts Network undertakes sponsor nominated charity projects. Sponsor define the scope, set the goal amount and suggest the nominee who they want to help. As a potential sponsor, if you are working on gathering this information but you have pre-allocated funds that you want to sent to CHN, you have an option to do so. Any prepaid amount will be kept in your name for the future charity need for upto an year.
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 payment_status = ‘Completed’ and projects_sponsore = ‘”.$projectid.”‘ order by id desc”);
if(!empty($res)) {
echo ”
FundRaising Honor Roll | |||
---|---|---|---|
S.No. | Name | Donation Amount | Payment Status |
“. $i .” | “. $re->name .” | $ “. $re->donation_amount .” | “. $payment_status .” |
“;
}
[/insert_php]