For the past several years, on the first Sunday of May, rain or shine, more than 40,000 people will come together on the Boston Common to make a powerful statement about hunger in Massachusetts. This event, called Walk for Hunger is sponsored by a Nonprofit called Project Bread. Money raised from the Walk will be used to develop and fund hundreds of critical programs that provide hunger relief to families and individuals across the state.
Compassionate Hearts Network Members and friends fund raise and participate in the walk. This year’s walk is on Sunday, May 6th 2018. This is a 10 miles walk along the Charles river. We look forward to have a great walk for a great cause. Fund raising target for 2018 is $1000 USD.
[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]