Jump to content
Fórum Script Brasil
  • 0

Inclusão depáginas


Wanber

Question

Como faço pra chamar um arquivo e não perder os valores da variáveis?

Explicando melhor:

Tenho as páginas index.php, global.php e teste.php

global.php contém todas variaveis globais que preciso, e é chamado em todas páginas do site da seguinte forma: include 'global.php';

no caso ele está sendo chamado no index.php

na mesma página index.php, chamo o arquivo teste.php (include 'teste.php';)

tenho a variavel $titulo = 'titulo'; no global.php

quando chamo a variavel (echo $titulo;) no index.php ela é exibida corretamente.

Mas quando chamo ela no teste.php tenho o erro de variável não definida (Notice: Undefined variable: titulo)

Como faço pra exibir variaveis do global.php no teste.php?

Edited by Wanber
Link to comment
Share on other sites

6 answers to this question

Recommended Posts

  • 0
Mostra o código relevante ao erro/dúvida.

Um abraço.

index.php

<?php

include 'global.php';
include 'teste.php';
    
?>
global.php
<?php

session_start();

require_once './config.php';

$connect = mysql_connect($host, $username, $password) or header("location: ./instalacao"); 
$db = mysql_select_db($dbname, $connect) or header("location: ./instalacao");

require_once "class.core.php";
require_once "class.users.php";

$core = new Core();
$users = new Users();

$sitename = $core->CmsConfig('cms_name');

?>
teste.php
<?php

echo $sitename;

?>

Quando entro na pagina index.php retorna o erro:

Notice: Undefined variable: sitename

Link to comment
Share on other sites

  • 0

Encontrei outro problema.

A cada variavel que eu for usar no teste.php tenho que antes colocar global $nome_da_variavel

certo? Mais se eu for usar uma função? Tipo:

no global.php tenho a classe core e users inclusas

require_once "class.core.php";
require_once "class.users.php";

$core = new Core();
$users = new Users();
onde tem várias funçoes uma delas:
public static function EscapeString($string = '')
    {
        return mysql_real_escape_string(stripslashes(trim(htmlspecialchars($string))));
    }
como faço pra usar as funções no teste.php ?
$core->EscapeString();

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...