Coming soon in the Sinax-Framework version 0.04, the RSS module! Keeping it clean and simple is our motto. 1 2 3 4 5 6 <?php include("sx/rss.inc.php’"); $r = new SXRSSChannel("Sinax RSS 1", "First Sinax RSS Feed", "http://www.sinax.be/rss/"); $r->addItem(new SXRSSItem("First RSS Item", "http://www.sinax.be/firstrssitem/", "My First RSS item", "Michael Anckaert", "2010-05-11")); $r->render();
May 11, 2010 | By: Michael | No Comments
I’ve just uploaded some new work on Sinax-Framework ORM and a new sample for the SXModel class. Defining a model that maps to a database table is fairly straightforward. Simply subclass the SXModel class (or work on an instance) and map the properties of the model to the fields of the database.
Mar 12, 2010 | By: Michael | No Comments
The forms component of the Sinax-Framework is designed to facilitate working with forms and fields. Below is a sample that you can also find in the Sinax-Framework source tree. It creates a simple form containing three fields, two regular SXTextField and one SXEmailField.
Mar 11, 2010 | By: Michael | No Comments
To aid us in our day to day PHP development work we have created a set of libraries and helper classes that speed and simplify enterprise PHP development. Because we believe in the spirit of Open Source Software we have decided to continue to develop these libraries under the GPL license. Splitting these libraries from [...]
Mar 11, 2010 | By: Michael | No Comments