
Jason
Staff
/ Moderator

Jan 3, 2012, 8:20 AM
Post #2 of 4
(429 views)
Shortcut
|
|
Re: [RonPeterson] Section Name
[In reply to]
|
Can't Post
|
|
Hi, Since a section name doesn't change very often, and a page will generally only show one section at a time, you can normally just hard code this value ie If you need to dynamically retrieve the section name, you can do it like this:
<?php $sectionDetails = loadSchema($record['_tableName']); ?> <h1><?php echo $sectionDetails['menuName'];?></h1> Note: You may need to change the name of the variable $record to match the variable names you are using on your page. Hope this helps get you started. --------------------------------------------------- Jason Sauchuk - Programmer interactivetools.com Hire me! Save time by getting our experts to help with your project. http://www.interactivetools.com/consulting/
(This post was edited by Jason on Jan 3, 2012, 8:48 AM)
|