Last time I posted a question here I was asked to not ask questions about getting specific software to work, but rather more general programming questions...
That said, I did find some PHP code online that seems to suit my needs. I am running a script that requires a php & tpl file to create a new page. Placing this code in a new PHP file is causing something to break. I have done nothing else related to integrating this API except create this new PHP file and a blank TPL file of the same name.
The below is an example of the PHP file. Am I missing something small or the big picture entirely? Just trying to create a simple page that has deals in certain cities.
<?
$key = ‘entercodehere’;
$search = “http://api.yipit.com/v1/deals/?key=$key&division=indianapolis”;
$search_init = curl_init();
curl_setopt($search_init, CURLOPT_HTTPHEADER, array( ‘Expect:’ ) );
curl_setopt($search_init, CURLOPT_URL, $search);
curl_setopt($search_init, CURLOPT_RETURNTRANSFER, TRUE);
$yipit = curl_exec($search_init);
$obj = json_decode($yipit,true);
$cnt=count($obj["response"]["deals"]);
for($i=0;$i<$cnt;$i++)
{
echo “<p>ID: “.$obj["response"]["deals"][$i]["id"].”<br>Date Added: “.$obj["response"]["deals"][$i]["date_added"].”<br>End Date: “.$obj["response"]["deals"][$i]["end_date"].”<br>Discount formatted: “.$obj["response"]["deals"][$i]["discount"]["formatted"].”<br>Price formatted: “.$obj["response"]["deals"][$i]["price"]["formatted"].”<br>Value formatted: “.$obj["response"]["deals"][$i]["value"]["formatted"].”<br>Purchased: “.$obj["response"]["deals"][$i]["purchased"].”<br>Yipit title: “.$obj["response"]["deals"][$i]["yipit_title"].”<br>Url: “. $obj["response"]["deals"][$i]["url"].”<br>Yipit url: “.$obj["response"]["deals"][$i]["yipit_url"].”<br>Mobile url: “.$obj["response"]["deals"][$i]["mobile_url"].”<br>Image big: “.$obj["response"]["deals"][$i]["images"]["image_big"].”<br>Image small: “.$obj["response"]["deals"][$i]["images"]["image_small"].”<br>Tag name: “.$obj["response"]["deals"][$i]["tags"][0]["name"].”<br>Tag slug: “.$obj["response"]["deals"][$i]["tags"][0]["slug"].”<br>Tag url: “.$obj["response"]["deals"][$i]["tags"][0]["url"].”<br>Business name: “.$obj["response"]["deals"][$i]["business"]["name"].”<br>Source name: “.$obj["response"]["deals"][$i]["source"]["name"].”</p>”;
}
?>
As requested, I'm getting this error: Server error The website encountered an error while retrieving [URL]. It may be down for maintenance or configured incorrectly. Here are some suggestions: Reload this webpage later. HTTP Error 500 (Internal Server Error): An unexpected condition was encountered while the server was attempting to fulfill the request.