Developer Guide

Google Code Project

Sep 5, 2010 – Onpub has it's own Google Code Project called onpubdev. This is a site for those interested in collaborating in the open source development of the Onpub source code. It's also...Read more.Read more

OnpubAPI Introduction

Apr 10, 2007 – Every download of Onpub includes OnpubAPI (Onpub Application Programming Interface). OnpubAPI is a collection of PHP 5 objects and functions that enable full programmatic control of Onpub-created content. OnpubAPI gives...Read more.Read more

Get Started with OnpubAPI

Nov 17, 2009 – Onpub stores all the content you create with it in a MySQL database. A MySQL database with the Onpub schema (i.e., database tables) installed is referred to as an Onpub...Read more.Read more

OnpubAPI Reference

Dec 30, 2009 – Class documentation generated by...Read more.Read more

Onpub Schema

Dec 30, 2009 – PDF diagram of Onpub's database...Read more.Read more

Generate RSS Feeds

Nov 24, 2009 – Introduction This tutorial explains how to use OnpubAPI and Unversal Feed Generator to retrieve a section of articles created with Onpub and convert it to RSS. This is a quick...Read more.Read more

Output the Number of Articles in the Database

Dec 30, 2009

Get and Display an Onpub Article

Dec 30, 2009

Create, Update, and Display Onpub Articles

Dec 30, 2009

Select Only the Newest Article From a Section

Mar 26, 2010 – The code below shows how to use OnpubAPI to get the newest article from a specific Onpub section without having to write any SQL queries of your own. <?php // Establish the connection to the Onpub database....Read more.Read more

Output the Titles of the 10 Most Recent Articles in a Specific Section

Apr 14, 2010 – The PHP example code below shows how to use OnpubAPI to output a bulleted list of titles of the 10 most recent articles from a specific Onpub section. <?php include 'onpub/api/onpubapi.php';...Read more.Read more