Skip to content

Instantly share code, notes, and snippets.

View BaylorRae's full-sized avatar

Baylor Weathers BaylorRae

View GitHub Profile
@BaylorRae
BaylorRae / gist:564675
Created September 3, 2010 22:43
Wufoo API - getEntryCountToday
<?php
// Added inside of the WufooApiWrapper Class
public function getEntryCountToday($identifier, $from ='forms') {
$url = $this->getFullUrl($from.'/'.$identifier) . '?IncludeTodayCount=true';
// echo $url;
// die;
$this->curl = new WufooCurl();