Re: How to pass connection as global variable ?

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



----- Original Message ----- From: "Chris" <dmagick@xxxxxxxxx>
To: "C.R.Vegelin" <cr.vegelin@xxxxxxxxx>
Cc: "php-general@xxxxxxxxxxxx" <php-general@xxxxxxxxxxxxx>
Sent: Wednesday, July 11, 2007 8:56 AM
Subject: Re:  How to pass connection as global variable ?


C.R.Vegelin wrote:
I have various PHP scripts that use the same database.
The startup script default.php sets the connection once for all the scripts. This connection is set in $_SESSION to make it a global variable for all scripts. When switching from page default to page faq, I get errors I can't explain. Any help is highly appreciated.
TIA, Cor
 default.php
----------------
<?php
session_start();
require("menu.php");

<snip>

faq.php
-----------
<?php require("menu.php");

The first two lines give it away ;)

You're missing a session_start().


--
Postgresql & php tutorials
http://www.designmagick.com/


Thanks Chris,

I included session_start(); as first line in faq.php, but now I get other warnings /errors:
Warning: mysqli_query() [function.mysqli-query]: Couldn't fetch mysqli
   in line "$result = mysqli_query($link, $sql);"
Warning: mysqli_error() [function.mysqli-error]: Couldn't fetch mysqli
in line "if (!$result) { echo "Can't execute query ($sql): " . mysqli_error($link); exit; }

Any idea why ?

Cor
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux