HEX
Server: Apache
System: Linux dev.epsylon.net 3.10.0-1160.144.1.el7.tuxcare.els2.x86_64 #1 SMP Sun Feb 15 11:22:42 UTC 2026 x86_64
User: nexper (1054)
PHP: 8.2.30
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/nexper/public_html/php/modules/menu.php
<?php


function make_menu_bot() {
	$secl = "?sec=1&pcat="; //seccion productos	
	//crea el menu bottom
	$c = "SELECT id,nombre FROM categoria WHERE disabled = '0' AND level = '0' AND id_main = '0'";
	$query = mysql_query($c);
	
	while ($res = mysql_fetch_assoc($query)) {
		//<li><a href="#">Inicio</a>|</li>
		echo '<li><a href='.$secl.$res{'id'}.'>'.$res{'nombre'}.'</a>|</li>';	
	}
	return;
}
?>