PHP

Release 0.4 of PHP Wrapper Library for Harvest API

Release 0.4 is now available of the Harvest API PHP Wrapper Library. This update to the library supports both the Time Tracking and Extended REST APIs, in addition to bug fixes and additional documentation. To stay up-to-date with all the changes visit the main library page available here.

// Harvest // PHP //

Release 1.0 of YahooFinance – PHP Library

YahooFinanceAPI is an open source php library for interacting with the Yahoo Finance Stock API. For those of you unfamiliar with Yahoo’s Stock API please review my previous post Yahoo Finance Stock API. This library contains an easy interface for obtaining information on one or more stocks. For a quick demo of the library feel

Release 0.3: PHP Wrapper Library for Harvest API

New Version Released!! Get it here. Version 0.3 is available. I’ve been making enhancements since the initial release of the PHP Wrapper Library for the Harvest API. This 0.3 version of the wrapper library contains full implementation of the Extended REST API minus the receipt images. In addition there are 2 new utility classes that

// Harvest // PHP //
Read More

PHP Wrapper Library for Harvest API – Update: 0.2 Released !!

New Version released ! Get it Here. I’ve been making enhancements since the initial release of the PHP Wrapper Library for the Harvest API, that I first released a week ago in my entry PHP Wrapper Library for the Harvest API. This 0.2 version of the wrapper library contains bug fixes for some issues that

// Harvest // PHP //
Read More

PHP Wrapper Library for Harvest API

UPDATE: Current Release details and download available here Harvest Users may or may not be familiar with the Harvest API that can be used to access and manipulate timesheets, clients, projects, tasks, and more. Since Harvests creation they have been integrating with other 3rd party applications and to communicate information across channels they created the

// Harvest // PHP //
Read More

Tips & Tricks: Don’t forget you can break out of php mode

Often when developing we often get stuck in the mindset that we have to do everything in the language we are working with. When it comes to PHP this can sometimes lead to line after line of echo statements that do not contain any code but simply HTML or CSS elements. Due to the very

PHP $_SERVER : Obtaining Server and Environment Information

The php $_SERVER array is a super global that contains information about the server and environment that the php script is running in. Within this array there are 3 indexes or values that behave similarly and it is often hard to know which one to utilize. They are: $_SERVER[ ‘PHP_SELF’ ] $_SERVER[ ‘SCRIPT_NAME’ ] $_SERVER[

// PHP //
Read More

Obtaining Stock Information: Utilizing AJAX, JSONP, and the YahooFinanceAPI library.

This short tutorial shows how to access Stock Information from Yahoo Finance through an AJAX call utilizing JSONP. For the tutorial the following information is required. JQuery – Javascript library with built in AJAX and JSONP functions YahooFinanceAPI – PHP library that utilizes Yahoo Finance to return stock information from an underlying call to download.finance.yahoo.com/d/qutoes.csv

YahooFinanceAPI – A PHP Library for obtaining stock quote information from Yahoo Finance

YahooFinanceAPI is an open source php library for interacting with the Yahoo Finance Stock API. For those of you unfamiliar with Yahoo’s Stock API please review my previous post Yahoo Finance Stock API. This library contains an easy interface for obtaining information on one or more stocks. For a quick demo of the library feel

PHP Exceptions: An Overview

Overview Exceptions are a way to modify the flow of an application based on specific errors that occur during execution. They are used by developers to prevent invalid values or configurations from being executed.  There are 2 way to handle Exceptions in PHP by the user of Try Catch blocks or the use of a

// PHP //
Read More