Skip to content

Instantly share code, notes, and snippets.

View mwanginjamb's full-sized avatar
🎯
Focusing On DevOps

Francis Njambi mwanginjamb

🎯
Focusing On DevOps
View GitHub Profile
@jslegers
jslegers / dynamics.odata.services.php
Last active October 28, 2022 12:48
A pretty basic but effective class that can be used to do CRUD operations on Microsoft Dynamics NAV's Odata service for the customer entity
<?php
// A pretty basic but effective class that can be used for doing CRUD operations on Microsoft Dynamics NAV's Odata services
error_reporting(E_ALL);
ini_set("display_errors", 1);
class http_request {
protected $_handle = NULL;