mgd_get_page

Name

mgd_get_page -- Get a page record

Synopsis

object mgd_get_page(int id);

Description

Minimum version: Midgard 1.0 (Land Rover)

Gets information about the page record with id id.

Returns an object describing the record if successfull. Returns false on failure.

Example

<?php
 $id = 17;
 $page = mgd_get_page( $id );
 echo $page->title;
?>