put query inside a function in php
- northstjarna
- Beginner


- Joined: Nov 14, 2006
- Posts: 58
- Loc: Chertsey, UK
- Status: Offline
Hi there trying to put a query inside a function not sure its possible to do this in php. Can do it in coldfusion.
Basically I want to call a recursive query that is selectable via some id.
Its telling me that I can't do this inside a function.
Warning: mysql_select_db(): supplied argument is not a valid MySQL-Link resource in Library....
How would I be able to achieve this? Maybe in a class?
Any help thanks
Andi
Basically I want to call a recursive query that is selectable via some id.
Code: [ Select ]
function getmenu($menu_id){
/* get the top most level menu */
mysql_select_db($database_eggbox, $eggbox);
$query_top_menu = "select * from menu where menu_parent_menu_id = $menu_id";
$top_menu = mysql_query($query_top_menu, $eggbox) or die(mysql_error());
$row_top_menu = mysql_fetch_assoc($top_menu);
$totalRows_top_menu = mysql_num_rows($top_menu);
/* loop and echo */
}
getmenu(0);
/* get the top most level menu */
mysql_select_db($database_eggbox, $eggbox);
$query_top_menu = "select * from menu where menu_parent_menu_id = $menu_id";
$top_menu = mysql_query($query_top_menu, $eggbox) or die(mysql_error());
$row_top_menu = mysql_fetch_assoc($top_menu);
$totalRows_top_menu = mysql_num_rows($top_menu);
/* loop and echo */
}
getmenu(0);
- function getmenu($menu_id){
- /* get the top most level menu */
- mysql_select_db($database_eggbox, $eggbox);
- $query_top_menu = "select * from menu where menu_parent_menu_id = $menu_id";
- $top_menu = mysql_query($query_top_menu, $eggbox) or die(mysql_error());
- $row_top_menu = mysql_fetch_assoc($top_menu);
- $totalRows_top_menu = mysql_num_rows($top_menu);
- /* loop and echo */
- }
- getmenu(0);
Its telling me that I can't do this inside a function.
Warning: mysql_select_db(): supplied argument is not a valid MySQL-Link resource in Library....
How would I be able to achieve this? Maybe in a class?
Any help thanks
Andi
- Anonymous
- Bot


- Joined: 25 Feb 2008
- Posts: ?
- Loc: Ozzuland
- Status: Online
April 26th, 2010, 3:46 pm
- joebert
- Sledgehammer


- Joined: Feb 10, 2004
- Posts: 13455
- Loc: Florida
- Status: Offline
You need to use the "global" keyword to make the $database_eggbox and other relevant variables visible inside the function.
Or, pass the relevant variables as arguments in the function.
PHP Code: [ Select ]
function getmenu($menu_id)
{
global $database_eggbox, $eggbox;
// ...
}
{
global $database_eggbox, $eggbox;
// ...
}
- function getmenu($menu_id)
- {
- global $database_eggbox, $eggbox;
- // ...
- }
Or, pass the relevant variables as arguments in the function.
PHP Code: [ Select ]
function getmenu($menu_id, $database_eggbox, $eggbox){}
- northstjarna
- Beginner


- Joined: Nov 14, 2006
- Posts: 58
- Loc: Chertsey, UK
- Status: Offline
Of course now.... Got it working...
Just need a bit more code to get it working recursively now ;o)
Thanks for your help
Code: [ Select ]
mysql_select_db($database_eggbox, $eggbox);
function getmenu($menu_id){
/* get the top most level menu */
global $database_eggbox, $eggbox;
$query_top_menu = "select * from menu where menu_parent_menu_id = $menu_id";
$top_menu = mysql_query($query_top_menu, $eggbox) or die(mysql_error());
$row_top_menu = mysql_fetch_assoc($top_menu);
$totalRows_top_menu = mysql_num_rows($top_menu);
do {
echo $row_top_menu['menu_text'];
} while ($row_top_menu = mysql_fetch_assoc($top_menu));
}
function getmenu($menu_id){
/* get the top most level menu */
global $database_eggbox, $eggbox;
$query_top_menu = "select * from menu where menu_parent_menu_id = $menu_id";
$top_menu = mysql_query($query_top_menu, $eggbox) or die(mysql_error());
$row_top_menu = mysql_fetch_assoc($top_menu);
$totalRows_top_menu = mysql_num_rows($top_menu);
do {
echo $row_top_menu['menu_text'];
} while ($row_top_menu = mysql_fetch_assoc($top_menu));
}
- mysql_select_db($database_eggbox, $eggbox);
- function getmenu($menu_id){
- /* get the top most level menu */
- global $database_eggbox, $eggbox;
- $query_top_menu = "select * from menu where menu_parent_menu_id = $menu_id";
- $top_menu = mysql_query($query_top_menu, $eggbox) or die(mysql_error());
- $row_top_menu = mysql_fetch_assoc($top_menu);
- $totalRows_top_menu = mysql_num_rows($top_menu);
- do {
- echo $row_top_menu['menu_text'];
- } while ($row_top_menu = mysql_fetch_assoc($top_menu));
- }
Just need a bit more code to get it working recursively now ;o)
Thanks for your help
- joebert
- Sledgehammer


- Joined: Feb 10, 2004
- Posts: 13455
- Loc: Florida
- Status: Offline
Now that the question is answered, I should probably mention that using a query recursively isn't usually a good thing to do.
It looks like you're building a hierarchy, which can be done with one query and two loops, if you use an item_id for your array keys and references to turn a single-dimensional array into a virtual multi-dimensional array.
This is taken from another site so it's not going to match up with your code, but hopefully the concept here is easy to see.
It looks like you're building a hierarchy, which can be done with one query and two loops, if you use an item_id for your array keys and references to turn a single-dimensional array into a virtual multi-dimensional array.
This is taken from another site so it's not going to match up with your code, but hopefully the concept here is easy to see.
PHP Code: [ Select ]
$category_lineage = array();
$result = $db->query('SELECT category_id, parent_id, label FROM ' . CATEGORIES_TABLE, MYSQLI_USE_RESULT);
while($row = $result->fetch_object())
{
$row->sub_categories = array();
$category_lineage[$row->category_id] = $row;
}
$result->close();
foreach($category_lineage as $key => $val)
{
if($val->parent_id)
{
$category_lineage[$val->parent_id]->sub_categories[$key] =& $category_lineage[$key];
}
}
$result = $db->query('SELECT category_id, parent_id, label FROM ' . CATEGORIES_TABLE, MYSQLI_USE_RESULT);
while($row = $result->fetch_object())
{
$row->sub_categories = array();
$category_lineage[$row->category_id] = $row;
}
$result->close();
foreach($category_lineage as $key => $val)
{
if($val->parent_id)
{
$category_lineage[$val->parent_id]->sub_categories[$key] =& $category_lineage[$key];
}
}
- $category_lineage = array();
- $result = $db->query('SELECT category_id, parent_id, label FROM ' . CATEGORIES_TABLE, MYSQLI_USE_RESULT);
- while($row = $result->fetch_object())
- {
- $row->sub_categories = array();
- $category_lineage[$row->category_id] = $row;
- }
- $result->close();
- foreach($category_lineage as $key => $val)
- {
- if($val->parent_id)
- {
- $category_lineage[$val->parent_id]->sub_categories[$key] =& $category_lineage[$key];
- }
- }
Strong with this one, the sudo is.
- northstjarna
- Beginner


- Joined: Nov 14, 2006
- Posts: 58
- Loc: Chertsey, UK
- Status: Offline
Hi There when I meant recursive I meant like this.... ;o)
top level
sub level
sub sub level
sub level
top level
This works although I do not know if it is the most efficient way of doing it.
function getmenu($menu_level){
/* get the top most level menu */
global $database_eggbox, $eggbox;
$query_top_menu = "select * from menu where menu_parent_menu_id = 0 order by menu_display_order";
$top_menu = mysql_query($query_top_menu, $eggbox) or die(mysql_error());
$row_top_menu = mysql_fetch_assoc($top_menu);
$totalRows_top_menu = mysql_num_rows($top_menu);
if ($menu_level <> 0) {
echo "<ul>";
do {
echo "<li><a href='index.php?' title='opens in same window' target='_self' >" . $row_top_menu['menu_text'] . "</a>";
$menuid = $row_top_menu['menu_id'];
$query_has_children = "select * from menu where menu_parent_menu_id = $menuid order by menu_display_order";
$has_children = mysql_query($query_has_children, $eggbox) or die(mysql_error());
$row_has_children = mysql_fetch_assoc($has_children);
$totalRows_has_children = mysql_num_rows($has_children);
if($totalRows_has_children > 0){
getchildren($menuid,0);
} else {
echo "</li>";
}
} while ($row_top_menu = mysql_fetch_assoc($top_menu));
echo "</ul>";
} elseif ($menu_level == 0) {
echo "<ul>";
do {
echo "<li><a href='index.php?' title='opens in same window' target='_self' >" . $row_top_menu['menu_text'] . "</a></li>";
} while ($row_top_menu = mysql_fetch_assoc($top_menu));
echo "</ul>";
}
} // End Function
function getchildren ($menuid,$count) {
/* get the next level menu */
global $database_eggbox, $eggbox;
$query_child_menu = "select * from menu where menu_parent_menu_id = $menuid order by menu_display_order";
$child_menu = mysql_query($query_child_menu, $eggbox) or die(mysql_error());
$row_child_menu = mysql_fetch_assoc($child_menu);
$totalRows_child_menu = mysql_num_rows($child_menu);
do {
if($count == 0) {
echo "<ul>";
}
echo "<li><a href='index.php?' title='opens in same window' target='_self' >" . $row_child_menu['menu_text'] . "</a>";
$menuidd = $row_child_menu['menu_id'];
$query_has_childrens = "select * from menu where menu_parent_menu_id = $menuidd order by menu_display_order";
$has_childrens = mysql_query($query_has_childrens, $eggbox) or die(mysql_error());
$row_has_childrens = mysql_fetch_assoc($has_childrens);
$totalRows_has_childrens = mysql_num_rows($has_childrens);
if($totalRows_has_childrens > 0){
getchildren($menuidd,0);
} else {
"</li>";
}
if($count+1 == $totalRows_child_menu) {
echo "</ul>";
}
$count += 1;
} while ($row_child_menu = mysql_fetch_assoc($child_menu));
} // end function
Thanks for your insight though...
top level
sub level
sub sub level
sub level
top level
This works although I do not know if it is the most efficient way of doing it.
Code: [ Select ]
function getmenu($menu_level){
/* get the top most level menu */
global $database_eggbox, $eggbox;
$query_top_menu = "select * from menu where menu_parent_menu_id = 0 order by menu_display_order";
$top_menu = mysql_query($query_top_menu, $eggbox) or die(mysql_error());
$row_top_menu = mysql_fetch_assoc($top_menu);
$totalRows_top_menu = mysql_num_rows($top_menu);
if ($menu_level <> 0) {
echo "<ul>";
do {
echo "<li><a href='index.php?' title='opens in same window' target='_self' >" . $row_top_menu['menu_text'] . "</a>";
$menuid = $row_top_menu['menu_id'];
$query_has_children = "select * from menu where menu_parent_menu_id = $menuid order by menu_display_order";
$has_children = mysql_query($query_has_children, $eggbox) or die(mysql_error());
$row_has_children = mysql_fetch_assoc($has_children);
$totalRows_has_children = mysql_num_rows($has_children);
if($totalRows_has_children > 0){
getchildren($menuid,0);
} else {
echo "</li>";
}
} while ($row_top_menu = mysql_fetch_assoc($top_menu));
echo "</ul>";
} elseif ($menu_level == 0) {
echo "<ul>";
do {
echo "<li><a href='index.php?' title='opens in same window' target='_self' >" . $row_top_menu['menu_text'] . "</a></li>";
} while ($row_top_menu = mysql_fetch_assoc($top_menu));
echo "</ul>";
}
} // End Function
function getchildren ($menuid,$count) {
/* get the next level menu */
global $database_eggbox, $eggbox;
$query_child_menu = "select * from menu where menu_parent_menu_id = $menuid order by menu_display_order";
$child_menu = mysql_query($query_child_menu, $eggbox) or die(mysql_error());
$row_child_menu = mysql_fetch_assoc($child_menu);
$totalRows_child_menu = mysql_num_rows($child_menu);
do {
if($count == 0) {
echo "<ul>";
}
echo "<li><a href='index.php?' title='opens in same window' target='_self' >" . $row_child_menu['menu_text'] . "</a>";
$menuidd = $row_child_menu['menu_id'];
$query_has_childrens = "select * from menu where menu_parent_menu_id = $menuidd order by menu_display_order";
$has_childrens = mysql_query($query_has_childrens, $eggbox) or die(mysql_error());
$row_has_childrens = mysql_fetch_assoc($has_childrens);
$totalRows_has_childrens = mysql_num_rows($has_childrens);
if($totalRows_has_childrens > 0){
getchildren($menuidd,0);
} else {
"</li>";
}
if($count+1 == $totalRows_child_menu) {
echo "</ul>";
}
$count += 1;
} while ($row_child_menu = mysql_fetch_assoc($child_menu));
} // end function
- function getmenu($menu_level){
- /* get the top most level menu */
- global $database_eggbox, $eggbox;
- $query_top_menu = "select * from menu where menu_parent_menu_id = 0 order by menu_display_order";
- $top_menu = mysql_query($query_top_menu, $eggbox) or die(mysql_error());
- $row_top_menu = mysql_fetch_assoc($top_menu);
- $totalRows_top_menu = mysql_num_rows($top_menu);
- if ($menu_level <> 0) {
- echo "<ul>";
- do {
- echo "<li><a href='index.php?' title='opens in same window' target='_self' >" . $row_top_menu['menu_text'] . "</a>";
- $menuid = $row_top_menu['menu_id'];
- $query_has_children = "select * from menu where menu_parent_menu_id = $menuid order by menu_display_order";
- $has_children = mysql_query($query_has_children, $eggbox) or die(mysql_error());
- $row_has_children = mysql_fetch_assoc($has_children);
- $totalRows_has_children = mysql_num_rows($has_children);
- if($totalRows_has_children > 0){
- getchildren($menuid,0);
- } else {
- echo "</li>";
- }
- } while ($row_top_menu = mysql_fetch_assoc($top_menu));
- echo "</ul>";
- } elseif ($menu_level == 0) {
- echo "<ul>";
- do {
- echo "<li><a href='index.php?' title='opens in same window' target='_self' >" . $row_top_menu['menu_text'] . "</a></li>";
- } while ($row_top_menu = mysql_fetch_assoc($top_menu));
- echo "</ul>";
- }
- } // End Function
- function getchildren ($menuid,$count) {
- /* get the next level menu */
- global $database_eggbox, $eggbox;
- $query_child_menu = "select * from menu where menu_parent_menu_id = $menuid order by menu_display_order";
- $child_menu = mysql_query($query_child_menu, $eggbox) or die(mysql_error());
- $row_child_menu = mysql_fetch_assoc($child_menu);
- $totalRows_child_menu = mysql_num_rows($child_menu);
- do {
- if($count == 0) {
- echo "<ul>";
- }
- echo "<li><a href='index.php?' title='opens in same window' target='_self' >" . $row_child_menu['menu_text'] . "</a>";
- $menuidd = $row_child_menu['menu_id'];
- $query_has_childrens = "select * from menu where menu_parent_menu_id = $menuidd order by menu_display_order";
- $has_childrens = mysql_query($query_has_childrens, $eggbox) or die(mysql_error());
- $row_has_childrens = mysql_fetch_assoc($has_childrens);
- $totalRows_has_childrens = mysql_num_rows($has_childrens);
- if($totalRows_has_childrens > 0){
- getchildren($menuidd,0);
- } else {
- "</li>";
- }
- if($count+1 == $totalRows_child_menu) {
- echo "</ul>";
- }
- $count += 1;
- } while ($row_child_menu = mysql_fetch_assoc($child_menu));
- } // end function
Thanks for your insight though...
- joebert
- Sledgehammer


- Joined: Feb 10, 2004
- Posts: 13455
- Loc: Florida
- Status: Offline
- northstjarna
- Beginner


- Joined: Nov 14, 2006
- Posts: 58
- Loc: Chertsey, UK
- Status: Offline
- joebert
- Sledgehammer


- Joined: Feb 10, 2004
- Posts: 13455
- Loc: Florida
- Status: Offline
Why are you brushing what I have to say off ?
What are the ellipsis in to substitute for ?
What are your intentions !
Quote:
Thanks for your insight though...
What are the ellipsis in to substitute for ?
Quote:
Thanks for your insight though, [you moron]
Quote:
Thanks for your insight though, [but I don't understand something]
Quote:
Thanks for your insight though, [lets see how long I can troll you]
What are your intentions !
Strong with this one, the sudo is.
- northstjarna
- Beginner


- Joined: Nov 14, 2006
- Posts: 58
- Loc: Chertsey, UK
- Status: Offline
Hi there,
I'm a coldsufion developer so my php skills have become a bit ropey I'm afraid...
My original question was how to put a query inside a function. You kindly showed me how to do that so thanks.
Sorry I'm not brushing off what you said. I was mearly thanking you. I can see what you were doing and that is helpful as I may try that..
I'll post the whole code up later so you can see. Don't have it with me right now, and I'm still working on it... I now have to make the menu collapsable and expandable which is the next tricky thing.
I am the moron yes... :O)
I'm a coldsufion developer so my php skills have become a bit ropey I'm afraid...
My original question was how to put a query inside a function. You kindly showed me how to do that so thanks.
Quote:
Why are you brushing what I have to say off ?
Sorry I'm not brushing off what you said. I was mearly thanking you. I can see what you were doing and that is helpful as I may try that..
Quote:
What are the ellipsis in to substitute for ?
I'll post the whole code up later so you can see. Don't have it with me right now, and I'm still working on it... I now have to make the menu collapsable and expandable which is the next tricky thing.
I am the moron yes... :O)
- northstjarna
- Beginner


- Joined: Nov 14, 2006
- Posts: 58
- Loc: Chertsey, UK
- Status: Offline
Ok Baby Cakes I promised you the code but the broadband went down. But here is everything finally... Fully recursive collapsable menu system. If you think I can improve on it then please let me know as I still think there is a better way to do it. My php skills are still pretty ropey as I come from a CF background... but ho hum here it is...
Code: [ Select ]
mysql_select_db($database_eggbox, $eggbox);
/* get the home page at start*/
$query_default_url = "select * from menu where menu_text = 'Home' order by menu_display_order";
$default_url = mysql_query($query_default_url, $eggbox) or die(mysql_error());
$row_default_url = mysql_fetch_assoc($default_url);
$totalRows_default_url = mysql_num_rows($default_url);
if (isset($_GET['menu_id'])) {
$urlmenu_id = $_GET['menu_id'];
} else {
$urlmenu_id = $row_default_url['menu_id'];
}
///////////////////////////////////////////////////////////////
/////////////////////* functions */////////////////////////////
///////////////////////////////////////////////////////////////
if (!function_exists("GetSQLValueString")) {
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
{
$theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
$theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
switch ($theType) {
case "text":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "long":
case "int":
$theValue = ($theValue != "") ? intval($theValue) : "NULL";
break;
case "double":
$theValue = ($theValue != "") ? "'" . doubleval($theValue) . "'" : "NULL";
break;
case "date":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "defined":
$theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
break;
}
return $theValue;
}
}
/* get breadcrumb function */
function getbreadcrumb($arraycount,$parentmenuid){
/* get the current level menu */
global $database_eggbox, $eggbox, $urlmenu_id, $array_menu;
$query_last_breadcrumb = "select * from menu where menu_id = $parentmenuid order by menu_display_order";
$last_breadcrumb = mysql_query($query_last_breadcrumb, $eggbox) or die(mysql_error());
$row_last_breadcrumb = mysql_fetch_assoc($last_breadcrumb);
$totalRows_last_breadcrumb = mysql_num_rows($last_breadcrumb);
$array_menu[$arraycount][0] = $row_last_breadcrumb['menu_id'];
$array_menu[$arraycount][1] = $row_last_breadcrumb['page_id'];
$array_menu[$arraycount][2] = $row_last_breadcrumb['menu_text'];
$array_menu[$arraycount][3] = $row_last_breadcrumb['menu_parent_menu_id'];
if($array_menu[$arraycount][0] != "") {
getbreadcrumb($arraycount+1,$array_menu[$arraycount][3]);
}
if($arraycount == count){
echo $array_menu[$arraycount][2];
} else {
$menuid = $array_menu[$arraycount][0];
echo "<li><a href='index.php?menu_id=$menuid' title='opens in same window' target='_self' >" . $array_menu[$arraycount][2] . "</a> : </li>";
}
mysql_free_result($last_breadcrumb);
} // end function
/* get menu functions */
function getmenu($menu_level,$menuid){
/* get the top most level menu */
global $database_eggbox, $eggbox, $urlmenu_id, $array_menu;
$query_top_menu = "select * from menu where menu_parent_menu_id = $menuid and menu_display = 1 order by menu_display_order";
$top_menu = mysql_query($query_top_menu, $eggbox) or die(mysql_error());
$row_top_menu = mysql_fetch_assoc($top_menu);
$totalRows_top_menu = mysql_num_rows($top_menu);
if ($menu_level == 0) { // Top menu for nav bar only
echo "<ul>";
do {
$menuid = $row_top_menu['menu_id'];
if($urlmenu_id == $menuid) {
$selectedclass = "class='selected'";
} else {
$selectedclass = "";
}
if($row_top_menu['menu_alt_location'] != "") {
// Alternative location like google
if(substr($row_top_menu['menu_alt_location'],0,4) == "http") { $menuurl = $row_top_menu['menu_alt_location']; } else { $menuurl = "http://" . $row_top_menu['menu_alt_location'];}
$title = "opens in new window";
$target = "_blank";
} else {
// site menu
$menuurl = "index.php?menu_id=$menuid";
$title = "opens in same window";
$target = "_self";
} // End if
echo "<li><a href='$menuurl' title='$target' target='$target' $selectedclass >" . $row_top_menu['menu_text'] . "</a></li>";
} while ($row_top_menu = mysql_fetch_assoc($top_menu));
echo "</ul>";
} elseif ($menu_level == 1) {
if($totalRows_top_menu > 0) { // full side menu and you don't want a top menu
echo "<ul>";
$count = 0;
do {
$menuid = $row_top_menu['menu_id'];
if($urlmenu_id == $menuid) {
$selectedclass = "class='selected'";
} else {
$selectedclass = "";
}
if($row_top_menu['menu_alt_location'] != "") {
// Alternative location like google
if(substr($row_top_menu['menu_alt_location'],0,4) == "http") { $menuurl = $row_top_menu['menu_alt_location']; } else { $menuurl = "http://" . $row_top_menu['menu_alt_location'];}
$title = "opens in new window";
$target = "_blank";
} else {
// Site menu
$menuurl = "index.php?menu_id=$menuid";
$title = "opens in same window";
$target = "_self";
} // End if
echo "<li><a href='$menuurl' title='$title' target='$target' >" . $row_top_menu['menu_text'] . "</a>";
$query_has_children = "select * from menu where menu_parent_menu_id = $menuid and menu_display = 1 order by menu_display_order";
$has_children = mysql_query($query_has_children, $eggbox) or die(mysql_error());
$row_has_children = mysql_fetch_assoc($has_children);
$totalRows_has_children = mysql_num_rows($has_children);
if($totalRows_has_children > 0 && $array_menu[sizeof($array_menu)-2][0] == $menuid){
getchildren($menuid,0,3);
echo "</li>";
} else {
echo "</li>";
}
$count += 1;
} while ($row_top_menu = mysql_fetch_assoc($top_menu));
echo "</ul>";
} // End if
mysql_free_result($has_children);
} elseif ($menu_level == 2) { // Second level menu based on top level menu
if($totalRows_top_menu > 0) {
$count = 0;
do {
$menuid = $row_top_menu['menu_id'];
$query_has_children = "select * from menu where menu_parent_menu_id = $menuid and menu_display = 1 order by menu_display_order";
$has_children = mysql_query($query_has_children, $eggbox) or die(mysql_error());
$row_has_children = mysql_fetch_assoc($has_children);
$totalRows_has_children = mysql_num_rows($has_children);
if($totalRows_has_children > 0 && $array_menu[sizeof($array_menu)-2][0] == $menuid){
getchildren($menuid,0,3);
}
$count += 1;
} while ($row_top_menu = mysql_fetch_assoc($top_menu));
} // End if
mysql_free_result($has_children);
} // End if function for menu levels
mysql_free_result($top_menu);
} // End Function
function getchildren ($menuid,$count,$count_level) {
/* get the next level menu */
global $database_eggbox, $eggbox, $urlmenu_id, $array_menu;
$query_child_menu = "select * from menu where menu_parent_menu_id = $menuid and menu_display = 1 order by menu_display_order";
$child_menu = mysql_query($query_child_menu, $eggbox) or die(mysql_error());
$row_child_menu = mysql_fetch_assoc($child_menu);
$totalRows_child_menu = mysql_num_rows($child_menu);
do {
if($count == 0) {
echo "<ul>";
}
$menuidd = $row_child_menu['menu_id'];
if($urlmenu_id == $menuidd) {
$selectedclass = "class='selected'";
} else {
$selectedclass = "";
}
if($row_child_menu['menu_alt_location'] != "") {
// Alternative location like google
if(substr($row_child_menu['menu_alt_location'],0,4) == "http") { $menuurl = $row_child_menu['menu_alt_location']; } else { $menuurl = "http://" . $row_child_menu['menu_alt_location'];}
$title = "opens in new window";
$target = "_blank";
} else {
// site menu
$menuurl = "index.php?menu_id=$menuidd";
$title = "opens in same window";
$target = "_self";
} // End if
echo "<li><a href='$menuurl' title='$title' target='$target' $selectedclass >" . $row_child_menu['menu_text'] . "</a>";
$query_has_childrens = "select * from menu where menu_parent_menu_id = $menuidd and menu_display = 1 order by menu_display_order";
$has_childrens = mysql_query($query_has_childrens, $eggbox) or die(mysql_error());
$row_has_childrens = mysql_fetch_assoc($has_childrens);
$totalRows_has_childrens = mysql_num_rows($has_childrens);
if($totalRows_has_childrens > 0 && $array_menu[sizeof($array_menu)-$count_level][0] == $menuidd){
getchildren($menuidd,0,$count_level+1);
echo "</li>";
} else {
echo "</li>";
}
if($count+1 == $totalRows_child_menu) {
echo "</ul>";
}
$count += 1;
} while ($row_child_menu = mysql_fetch_assoc($child_menu));
mysql_free_result($has_childrens);
mysql_free_result($child_menu);
} // end function
/* get content */
$query_page_info = "select menu_id, pages.* from pages inner join menu on pages.page_id = menu.page_id where menu.menu_id = $urlmenu_id";
$page_info = mysql_query($query_page_info, $eggbox) or die(mysql_error());
$row_page_info = mysql_fetch_assoc($page_info);
$totalRows_page_info = mysql_num_rows($page_info);
function getcontent($content){
global $row_page_info;
$content = $row_page_info[$content];
return $content;
} // End function
function getcolumns() {
global $database_eggbox, $eggbox, $row_page_info, $urlmenu_id;
$query_top_top_menu = "select * from menu where menu_parent_menu_id = $urlmenu_id and menu_display = 1 order by menu_display_order";
$top_top_menu = mysql_query($query_top_top_menu, $eggbox) or die(mysql_error());
$row_top_top_menu = mysql_fetch_assoc($top_top_menu);
$totalRows_top_top_menu = mysql_num_rows($top_top_menu);
if($row_page_info['page_lhs_content'] == "" && $row_page_info['page_rhs_content'] == "" && $totalRows_top_top_menu == 0) {
$collhsrhs = "-noLHSRHS";
} elseif($row_page_info['page_rhs_content'] == "" ) {
$collhsrhs = "-noRHS";
} elseif ($row_page_info['page_lhs_content'] == "" || $row_top_top_menu == 0) {
$collhsrhs = "-noLHS";
} else {
$collhsrhs = "";
}
return $collhsrhs;
}
mysql_free_result($page_info);
/* get the home page at start*/
$query_default_url = "select * from menu where menu_text = 'Home' order by menu_display_order";
$default_url = mysql_query($query_default_url, $eggbox) or die(mysql_error());
$row_default_url = mysql_fetch_assoc($default_url);
$totalRows_default_url = mysql_num_rows($default_url);
if (isset($_GET['menu_id'])) {
$urlmenu_id = $_GET['menu_id'];
} else {
$urlmenu_id = $row_default_url['menu_id'];
}
///////////////////////////////////////////////////////////////
/////////////////////* functions */////////////////////////////
///////////////////////////////////////////////////////////////
if (!function_exists("GetSQLValueString")) {
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
{
$theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
$theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
switch ($theType) {
case "text":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "long":
case "int":
$theValue = ($theValue != "") ? intval($theValue) : "NULL";
break;
case "double":
$theValue = ($theValue != "") ? "'" . doubleval($theValue) . "'" : "NULL";
break;
case "date":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "defined":
$theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
break;
}
return $theValue;
}
}
/* get breadcrumb function */
function getbreadcrumb($arraycount,$parentmenuid){
/* get the current level menu */
global $database_eggbox, $eggbox, $urlmenu_id, $array_menu;
$query_last_breadcrumb = "select * from menu where menu_id = $parentmenuid order by menu_display_order";
$last_breadcrumb = mysql_query($query_last_breadcrumb, $eggbox) or die(mysql_error());
$row_last_breadcrumb = mysql_fetch_assoc($last_breadcrumb);
$totalRows_last_breadcrumb = mysql_num_rows($last_breadcrumb);
$array_menu[$arraycount][0] = $row_last_breadcrumb['menu_id'];
$array_menu[$arraycount][1] = $row_last_breadcrumb['page_id'];
$array_menu[$arraycount][2] = $row_last_breadcrumb['menu_text'];
$array_menu[$arraycount][3] = $row_last_breadcrumb['menu_parent_menu_id'];
if($array_menu[$arraycount][0] != "") {
getbreadcrumb($arraycount+1,$array_menu[$arraycount][3]);
}
if($arraycount == count){
echo $array_menu[$arraycount][2];
} else {
$menuid = $array_menu[$arraycount][0];
echo "<li><a href='index.php?menu_id=$menuid' title='opens in same window' target='_self' >" . $array_menu[$arraycount][2] . "</a> : </li>";
}
mysql_free_result($last_breadcrumb);
} // end function
/* get menu functions */
function getmenu($menu_level,$menuid){
/* get the top most level menu */
global $database_eggbox, $eggbox, $urlmenu_id, $array_menu;
$query_top_menu = "select * from menu where menu_parent_menu_id = $menuid and menu_display = 1 order by menu_display_order";
$top_menu = mysql_query($query_top_menu, $eggbox) or die(mysql_error());
$row_top_menu = mysql_fetch_assoc($top_menu);
$totalRows_top_menu = mysql_num_rows($top_menu);
if ($menu_level == 0) { // Top menu for nav bar only
echo "<ul>";
do {
$menuid = $row_top_menu['menu_id'];
if($urlmenu_id == $menuid) {
$selectedclass = "class='selected'";
} else {
$selectedclass = "";
}
if($row_top_menu['menu_alt_location'] != "") {
// Alternative location like google
if(substr($row_top_menu['menu_alt_location'],0,4) == "http") { $menuurl = $row_top_menu['menu_alt_location']; } else { $menuurl = "http://" . $row_top_menu['menu_alt_location'];}
$title = "opens in new window";
$target = "_blank";
} else {
// site menu
$menuurl = "index.php?menu_id=$menuid";
$title = "opens in same window";
$target = "_self";
} // End if
echo "<li><a href='$menuurl' title='$target' target='$target' $selectedclass >" . $row_top_menu['menu_text'] . "</a></li>";
} while ($row_top_menu = mysql_fetch_assoc($top_menu));
echo "</ul>";
} elseif ($menu_level == 1) {
if($totalRows_top_menu > 0) { // full side menu and you don't want a top menu
echo "<ul>";
$count = 0;
do {
$menuid = $row_top_menu['menu_id'];
if($urlmenu_id == $menuid) {
$selectedclass = "class='selected'";
} else {
$selectedclass = "";
}
if($row_top_menu['menu_alt_location'] != "") {
// Alternative location like google
if(substr($row_top_menu['menu_alt_location'],0,4) == "http") { $menuurl = $row_top_menu['menu_alt_location']; } else { $menuurl = "http://" . $row_top_menu['menu_alt_location'];}
$title = "opens in new window";
$target = "_blank";
} else {
// Site menu
$menuurl = "index.php?menu_id=$menuid";
$title = "opens in same window";
$target = "_self";
} // End if
echo "<li><a href='$menuurl' title='$title' target='$target' >" . $row_top_menu['menu_text'] . "</a>";
$query_has_children = "select * from menu where menu_parent_menu_id = $menuid and menu_display = 1 order by menu_display_order";
$has_children = mysql_query($query_has_children, $eggbox) or die(mysql_error());
$row_has_children = mysql_fetch_assoc($has_children);
$totalRows_has_children = mysql_num_rows($has_children);
if($totalRows_has_children > 0 && $array_menu[sizeof($array_menu)-2][0] == $menuid){
getchildren($menuid,0,3);
echo "</li>";
} else {
echo "</li>";
}
$count += 1;
} while ($row_top_menu = mysql_fetch_assoc($top_menu));
echo "</ul>";
} // End if
mysql_free_result($has_children);
} elseif ($menu_level == 2) { // Second level menu based on top level menu
if($totalRows_top_menu > 0) {
$count = 0;
do {
$menuid = $row_top_menu['menu_id'];
$query_has_children = "select * from menu where menu_parent_menu_id = $menuid and menu_display = 1 order by menu_display_order";
$has_children = mysql_query($query_has_children, $eggbox) or die(mysql_error());
$row_has_children = mysql_fetch_assoc($has_children);
$totalRows_has_children = mysql_num_rows($has_children);
if($totalRows_has_children > 0 && $array_menu[sizeof($array_menu)-2][0] == $menuid){
getchildren($menuid,0,3);
}
$count += 1;
} while ($row_top_menu = mysql_fetch_assoc($top_menu));
} // End if
mysql_free_result($has_children);
} // End if function for menu levels
mysql_free_result($top_menu);
} // End Function
function getchildren ($menuid,$count,$count_level) {
/* get the next level menu */
global $database_eggbox, $eggbox, $urlmenu_id, $array_menu;
$query_child_menu = "select * from menu where menu_parent_menu_id = $menuid and menu_display = 1 order by menu_display_order";
$child_menu = mysql_query($query_child_menu, $eggbox) or die(mysql_error());
$row_child_menu = mysql_fetch_assoc($child_menu);
$totalRows_child_menu = mysql_num_rows($child_menu);
do {
if($count == 0) {
echo "<ul>";
}
$menuidd = $row_child_menu['menu_id'];
if($urlmenu_id == $menuidd) {
$selectedclass = "class='selected'";
} else {
$selectedclass = "";
}
if($row_child_menu['menu_alt_location'] != "") {
// Alternative location like google
if(substr($row_child_menu['menu_alt_location'],0,4) == "http") { $menuurl = $row_child_menu['menu_alt_location']; } else { $menuurl = "http://" . $row_child_menu['menu_alt_location'];}
$title = "opens in new window";
$target = "_blank";
} else {
// site menu
$menuurl = "index.php?menu_id=$menuidd";
$title = "opens in same window";
$target = "_self";
} // End if
echo "<li><a href='$menuurl' title='$title' target='$target' $selectedclass >" . $row_child_menu['menu_text'] . "</a>";
$query_has_childrens = "select * from menu where menu_parent_menu_id = $menuidd and menu_display = 1 order by menu_display_order";
$has_childrens = mysql_query($query_has_childrens, $eggbox) or die(mysql_error());
$row_has_childrens = mysql_fetch_assoc($has_childrens);
$totalRows_has_childrens = mysql_num_rows($has_childrens);
if($totalRows_has_childrens > 0 && $array_menu[sizeof($array_menu)-$count_level][0] == $menuidd){
getchildren($menuidd,0,$count_level+1);
echo "</li>";
} else {
echo "</li>";
}
if($count+1 == $totalRows_child_menu) {
echo "</ul>";
}
$count += 1;
} while ($row_child_menu = mysql_fetch_assoc($child_menu));
mysql_free_result($has_childrens);
mysql_free_result($child_menu);
} // end function
/* get content */
$query_page_info = "select menu_id, pages.* from pages inner join menu on pages.page_id = menu.page_id where menu.menu_id = $urlmenu_id";
$page_info = mysql_query($query_page_info, $eggbox) or die(mysql_error());
$row_page_info = mysql_fetch_assoc($page_info);
$totalRows_page_info = mysql_num_rows($page_info);
function getcontent($content){
global $row_page_info;
$content = $row_page_info[$content];
return $content;
} // End function
function getcolumns() {
global $database_eggbox, $eggbox, $row_page_info, $urlmenu_id;
$query_top_top_menu = "select * from menu where menu_parent_menu_id = $urlmenu_id and menu_display = 1 order by menu_display_order";
$top_top_menu = mysql_query($query_top_top_menu, $eggbox) or die(mysql_error());
$row_top_top_menu = mysql_fetch_assoc($top_top_menu);
$totalRows_top_top_menu = mysql_num_rows($top_top_menu);
if($row_page_info['page_lhs_content'] == "" && $row_page_info['page_rhs_content'] == "" && $totalRows_top_top_menu == 0) {
$collhsrhs = "-noLHSRHS";
} elseif($row_page_info['page_rhs_content'] == "" ) {
$collhsrhs = "-noRHS";
} elseif ($row_page_info['page_lhs_content'] == "" || $row_top_top_menu == 0) {
$collhsrhs = "-noLHS";
} else {
$collhsrhs = "";
}
return $collhsrhs;
}
mysql_free_result($page_info);
- mysql_select_db($database_eggbox, $eggbox);
- /* get the home page at start*/
- $query_default_url = "select * from menu where menu_text = 'Home' order by menu_display_order";
- $default_url = mysql_query($query_default_url, $eggbox) or die(mysql_error());
- $row_default_url = mysql_fetch_assoc($default_url);
- $totalRows_default_url = mysql_num_rows($default_url);
- if (isset($_GET['menu_id'])) {
- $urlmenu_id = $_GET['menu_id'];
- } else {
- $urlmenu_id = $row_default_url['menu_id'];
- }
- ///////////////////////////////////////////////////////////////
- /////////////////////* functions */////////////////////////////
- ///////////////////////////////////////////////////////////////
- if (!function_exists("GetSQLValueString")) {
- function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
- {
- $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
- $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
- switch ($theType) {
- case "text":
- $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
- break;
- case "long":
- case "int":
- $theValue = ($theValue != "") ? intval($theValue) : "NULL";
- break;
- case "double":
- $theValue = ($theValue != "") ? "'" . doubleval($theValue) . "'" : "NULL";
- break;
- case "date":
- $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
- break;
- case "defined":
- $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
- break;
- }
- return $theValue;
- }
- }
- /* get breadcrumb function */
- function getbreadcrumb($arraycount,$parentmenuid){
- /* get the current level menu */
- global $database_eggbox, $eggbox, $urlmenu_id, $array_menu;
- $query_last_breadcrumb = "select * from menu where menu_id = $parentmenuid order by menu_display_order";
- $last_breadcrumb = mysql_query($query_last_breadcrumb, $eggbox) or die(mysql_error());
- $row_last_breadcrumb = mysql_fetch_assoc($last_breadcrumb);
- $totalRows_last_breadcrumb = mysql_num_rows($last_breadcrumb);
- $array_menu[$arraycount][0] = $row_last_breadcrumb['menu_id'];
- $array_menu[$arraycount][1] = $row_last_breadcrumb['page_id'];
- $array_menu[$arraycount][2] = $row_last_breadcrumb['menu_text'];
- $array_menu[$arraycount][3] = $row_last_breadcrumb['menu_parent_menu_id'];
- if($array_menu[$arraycount][0] != "") {
- getbreadcrumb($arraycount+1,$array_menu[$arraycount][3]);
- }
- if($arraycount == count){
- echo $array_menu[$arraycount][2];
- } else {
- $menuid = $array_menu[$arraycount][0];
- echo "<li><a href='index.php?menu_id=$menuid' title='opens in same window' target='_self' >" . $array_menu[$arraycount][2] . "</a> : </li>";
- }
- mysql_free_result($last_breadcrumb);
- } // end function
- /* get menu functions */
- function getmenu($menu_level,$menuid){
- /* get the top most level menu */
- global $database_eggbox, $eggbox, $urlmenu_id, $array_menu;
- $query_top_menu = "select * from menu where menu_parent_menu_id = $menuid and menu_display = 1 order by menu_display_order";
- $top_menu = mysql_query($query_top_menu, $eggbox) or die(mysql_error());
- $row_top_menu = mysql_fetch_assoc($top_menu);
- $totalRows_top_menu = mysql_num_rows($top_menu);
- if ($menu_level == 0) { // Top menu for nav bar only
- echo "<ul>";
- do {
- $menuid = $row_top_menu['menu_id'];
- if($urlmenu_id == $menuid) {
- $selectedclass = "class='selected'";
- } else {
- $selectedclass = "";
- }
- if($row_top_menu['menu_alt_location'] != "") {
- // Alternative location like google
- if(substr($row_top_menu['menu_alt_location'],0,4) == "http") { $menuurl = $row_top_menu['menu_alt_location']; } else { $menuurl = "http://" . $row_top_menu['menu_alt_location'];}
- $title = "opens in new window";
- $target = "_blank";
- } else {
- // site menu
- $menuurl = "index.php?menu_id=$menuid";
- $title = "opens in same window";
- $target = "_self";
- } // End if
- echo "<li><a href='$menuurl' title='$target' target='$target' $selectedclass >" . $row_top_menu['menu_text'] . "</a></li>";
- } while ($row_top_menu = mysql_fetch_assoc($top_menu));
- echo "</ul>";
- } elseif ($menu_level == 1) {
- if($totalRows_top_menu > 0) { // full side menu and you don't want a top menu
- echo "<ul>";
- $count = 0;
- do {
- $menuid = $row_top_menu['menu_id'];
- if($urlmenu_id == $menuid) {
- $selectedclass = "class='selected'";
- } else {
- $selectedclass = "";
- }
- if($row_top_menu['menu_alt_location'] != "") {
- // Alternative location like google
- if(substr($row_top_menu['menu_alt_location'],0,4) == "http") { $menuurl = $row_top_menu['menu_alt_location']; } else { $menuurl = "http://" . $row_top_menu['menu_alt_location'];}
- $title = "opens in new window";
- $target = "_blank";
- } else {
- // Site menu
- $menuurl = "index.php?menu_id=$menuid";
- $title = "opens in same window";
- $target = "_self";
- } // End if
- echo "<li><a href='$menuurl' title='$title' target='$target' >" . $row_top_menu['menu_text'] . "</a>";
- $query_has_children = "select * from menu where menu_parent_menu_id = $menuid and menu_display = 1 order by menu_display_order";
- $has_children = mysql_query($query_has_children, $eggbox) or die(mysql_error());
- $row_has_children = mysql_fetch_assoc($has_children);
- $totalRows_has_children = mysql_num_rows($has_children);
- if($totalRows_has_children > 0 && $array_menu[sizeof($array_menu)-2][0] == $menuid){
- getchildren($menuid,0,3);
- echo "</li>";
- } else {
- echo "</li>";
- }
- $count += 1;
- } while ($row_top_menu = mysql_fetch_assoc($top_menu));
- echo "</ul>";
- } // End if
- mysql_free_result($has_children);
- } elseif ($menu_level == 2) { // Second level menu based on top level menu
- if($totalRows_top_menu > 0) {
- $count = 0;
- do {
- $menuid = $row_top_menu['menu_id'];
- $query_has_children = "select * from menu where menu_parent_menu_id = $menuid and menu_display = 1 order by menu_display_order";
- $has_children = mysql_query($query_has_children, $eggbox) or die(mysql_error());
- $row_has_children = mysql_fetch_assoc($has_children);
- $totalRows_has_children = mysql_num_rows($has_children);
- if($totalRows_has_children > 0 && $array_menu[sizeof($array_menu)-2][0] == $menuid){
- getchildren($menuid,0,3);
- }
- $count += 1;
- } while ($row_top_menu = mysql_fetch_assoc($top_menu));
- } // End if
- mysql_free_result($has_children);
- } // End if function for menu levels
- mysql_free_result($top_menu);
- } // End Function
- function getchildren ($menuid,$count,$count_level) {
- /* get the next level menu */
- global $database_eggbox, $eggbox, $urlmenu_id, $array_menu;
- $query_child_menu = "select * from menu where menu_parent_menu_id = $menuid and menu_display = 1 order by menu_display_order";
- $child_menu = mysql_query($query_child_menu, $eggbox) or die(mysql_error());
- $row_child_menu = mysql_fetch_assoc($child_menu);
- $totalRows_child_menu = mysql_num_rows($child_menu);
- do {
- if($count == 0) {
- echo "<ul>";
- }
- $menuidd = $row_child_menu['menu_id'];
- if($urlmenu_id == $menuidd) {
- $selectedclass = "class='selected'";
- } else {
- $selectedclass = "";
- }
- if($row_child_menu['menu_alt_location'] != "") {
- // Alternative location like google
- if(substr($row_child_menu['menu_alt_location'],0,4) == "http") { $menuurl = $row_child_menu['menu_alt_location']; } else { $menuurl = "http://" . $row_child_menu['menu_alt_location'];}
- $title = "opens in new window";
- $target = "_blank";
- } else {
- // site menu
- $menuurl = "index.php?menu_id=$menuidd";
- $title = "opens in same window";
- $target = "_self";
- } // End if
- echo "<li><a href='$menuurl' title='$title' target='$target' $selectedclass >" . $row_child_menu['menu_text'] . "</a>";
- $query_has_childrens = "select * from menu where menu_parent_menu_id = $menuidd and menu_display = 1 order by menu_display_order";
- $has_childrens = mysql_query($query_has_childrens, $eggbox) or die(mysql_error());
- $row_has_childrens = mysql_fetch_assoc($has_childrens);
- $totalRows_has_childrens = mysql_num_rows($has_childrens);
- if($totalRows_has_childrens > 0 && $array_menu[sizeof($array_menu)-$count_level][0] == $menuidd){
- getchildren($menuidd,0,$count_level+1);
- echo "</li>";
- } else {
- echo "</li>";
- }
- if($count+1 == $totalRows_child_menu) {
- echo "</ul>";
- }
- $count += 1;
- } while ($row_child_menu = mysql_fetch_assoc($child_menu));
- mysql_free_result($has_childrens);
- mysql_free_result($child_menu);
- } // end function
- /* get content */
- $query_page_info = "select menu_id, pages.* from pages inner join menu on pages.page_id = menu.page_id where menu.menu_id = $urlmenu_id";
- $page_info = mysql_query($query_page_info, $eggbox) or die(mysql_error());
- $row_page_info = mysql_fetch_assoc($page_info);
- $totalRows_page_info = mysql_num_rows($page_info);
- function getcontent($content){
- global $row_page_info;
- $content = $row_page_info[$content];
- return $content;
- } // End function
- function getcolumns() {
- global $database_eggbox, $eggbox, $row_page_info, $urlmenu_id;
- $query_top_top_menu = "select * from menu where menu_parent_menu_id = $urlmenu_id and menu_display = 1 order by menu_display_order";
- $top_top_menu = mysql_query($query_top_top_menu, $eggbox) or die(mysql_error());
- $row_top_top_menu = mysql_fetch_assoc($top_top_menu);
- $totalRows_top_top_menu = mysql_num_rows($top_top_menu);
- if($row_page_info['page_lhs_content'] == "" && $row_page_info['page_rhs_content'] == "" && $totalRows_top_top_menu == 0) {
- $collhsrhs = "-noLHSRHS";
- } elseif($row_page_info['page_rhs_content'] == "" ) {
- $collhsrhs = "-noRHS";
- } elseif ($row_page_info['page_lhs_content'] == "" || $row_top_top_menu == 0) {
- $collhsrhs = "-noLHS";
- } else {
- $collhsrhs = "";
- }
- return $collhsrhs;
- }
- mysql_free_result($page_info);
Page 1 of 1
To Reply to this topic you need to LOGIN or REGISTER. It is free.
Post Information
- Total Posts in this topic: 10 posts
- Users browsing this forum: No registered users and 180 guests
- You cannot post new topics in this forum
- You cannot reply to topics in this forum
- You cannot edit your posts in this forum
- You cannot delete your posts in this forum
- You cannot post attachments in this forum
