Skip to content

Instantly share code, notes, and snippets.

@joshtronic
Created November 16, 2012 21:40
Show Gist options
  • Save joshtronic/4091151 to your computer and use it in GitHub Desktop.
Save joshtronic/4091151 to your computer and use it in GitHub Desktop.
$reward = new MerchantReward();
for ($i = 1; $i <= 50; $i += 5)
{
$reward->record['merchant_id'] = '1';
$reward->record['location_id'] = '1';
$reward->record['reward'] = 'This is a reward';
$reward->record['visits'] = $i;
$reward->queue();
}
$reward->commit();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment