How To Use a REST API in PHP

Submitted by Yorkiebar on
Introduction: This tutorial is on how to use an API in PHP. What Is An API? An API is an Application Programming Interface and is used as a middle stepping stone for external applications to use the functions of an internal application. An example of this would be the Skype API. The Skype API allows external applications on the users computer to access their Skype account via the Skype4ComLib API. REST API: There are a few different types of APIs, we'll be using an example REST in this tutorial.

Efficiency Analysis in C++

Submitted by moazkhan on
While explaining previous tutorials, I was finding it difficult to explain various functions as I could talk in terms of efficiency and order. So, I have decided to include this earlier. In this tutorial, you will learn 1. What efficiency means. 2. Why time is more important than space. 3. The meaning of growth rate. 4. Explain different orders of growth. What is efficiency of a program? Efficiency of a program is directly related to the time and computer space it needs for execution.

Countdown Timer in JavaScript

Submitted by GeePee on
This project will teach you how to create a countdown timer in an easiest way by using jQuery plugin. Download countdown.js(just search countdown.js) and include it to your page. You can also modify the target date. In my example, I created a coming soon page which is the countdown of when the game is to be released. Hope you learn from this.

Online Examination Using PHP / MYSQL.

Submitted by tang3li2 on
Hi, This program is a full ajax(jquery) implementation it will cover features like javascipt(jquery element manipulation), php, mysql. Admin can add new examination input various answers, it will also show how to create your own MVC Pattern to reduce the reduncy of codings. The design was only using wire frame but the code is fully understandable because of the separation of model, views and

HTTPWebRequest WebProxy Proxies in C#

Submitted by Yorkiebar on
Introduction: This tutorial is on how to create a HTTPWebRequest in C# using a proxy connection. Why Proxies? Proxies are sometimes required in certain web scraping applications due to the sheer amount of data that needs to scraped. Some sites temporarily - or even permanently - block IP addresses which are requesting/receiving large amounts of data in a short time to avoid the website's full bandwidth being used on that single IP, and therefore stopping the site from going offline for all other users as well.