Global Variable Issues

I have a problem with including pages in PHP. The figure shows what I want to do. I want to include index.php pages in the horizontal and vertical menus. But now I can turn on only one of them. In global.php there is a database name, password and variable that determine which language I am using now. I included all the tricks: include, include_once, require, require_once. Nothing helps. What can you offer me? Thanx!

alt text

EDIT:

Here is my code:

Index.php:

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>KUSS</title>
<link href="styles/default.css" rel="stylesheet" type="text/css">
</head>

<body>
<table width="90%" border="0" align="center" cellpadding="0" cellspacing="0" class="main_border">
<?php 
    include_once ("modules/php/mainMenu.php"); 
?>

<? include_once ("modules/php/vertMenu.php"); ?><!--Head-->


</table>
</body>
</html>

global.php

<?php
// All global variables MUST be defines here

//representing current language
$gl_Lang = "UKR";       

//current horizontal menu click
$gl_MaimMenuChoice;     
//current vertical sub menu click
$gl_SubMenuChoice;

$gl_dbName = "127.0.0.1";
$gl_UserName = "user1";
$gl_Password = "12345";
$gl_adminDatabase = "admin";

?>

makeHoriz.php and makeVert.php are identical, except for one read from db and displaying rows and second columns

<?php
function MakeLeftVMenu($tableName, $levelID, $parentName)
{
    include_once ("modules/php/globals.php");

    //connect to db or die)
    $db = mysql_connect($gl_dbName, $gl_UserName, $gl_Password ) or die ("Unable to connect");

    //to prevenr ????? symbols in unicode - utf-8 coding
    mysql_query("SET NAMES 'UTF8'");

    //select database
    mysql_select_db($gl_adminDatabase, $db);
    $sql = "SELECT " .$gl_Lang. ", Link FROM ". $tableName." WHERE LevelID = ".$levelID. " AND ParentName = '". $parentName."'";
    echo $sql;
    //execute SQL-query
    $result = mysql_query($sql, $db);
    //read data to array
    $myRow = mysql_fetch_array($result);
    //print it to screen into the table
    do
    {
        echo "<tr><h3><a href=".trim($myRow['Link']).">". trim($myRow[$gl_Lang]) ."</a></h3></tr>";


    }while($myRow = mysql_fetch_array($result));
    //close database  = very inportant
    mysql_close($db);
}
?>
+2
source share
3 answers

horizonal_menu.php vertical_menu.php global.php, , require_once. , .

+2

/ , header.php, / global.php.

0

? , - http://mywebsite.com/horizontalmenu.php? , , , horizontalmenu.php, php , require_once .

,

Index.php

include('global.php');
include('horizontalmenu.php');
include('verticalmenu.php');

horiztontalmenu.php

 //No include statments as it is being included by Index.php which
 //has provided access to all global.php functions and variables.

, require_once require include, .

0

Source: https://habr.com/ru/post/1781095/


All Articles