phpbar.de logo

Mailinglisten-Archive

[php] Variablen innerhalb einer Klasse zuweisen

[php] Variablen innerhalb einer Klasse zuweisen

Stephan Nix tankpilot_(at)_topmail.de
Sat, 17 Mar 2001 12:10:01 +0100


Danke!

Clemens und Thomas haben erfolgreich geholfen!!!

Gruß
Stephan



>From: "Stephan Nix" <tankpilot_(at)_topmail.de>
>
>> Im Hauptscript wird per require eine Datei geladen, welche die
>> Zugangsdaten für die DB in den Variablen $news_dbhost,
>> $news_dbname, $news_dbuser, $news_dbpasswd enthält.
>>
>> class databaseConnection {
>>
>> var $conn;
>> var $mysqlHost = $news_dbhost;   // Mysqlhost (Standard: localhost)
>> var $mysqlUser = $GLOBALS["news_dbuser"];   // Username für Mysql-Access
>> var $mysqlPwd  = $GLOBALS["news_dbpasswd"]; file://dazupassendes
>Passwort
>> var $mysqlDb   = $GLOBALS["news_dbname"];   // mysql-db in welche die
>newsletter-
>
>class databaseConnection {
>        var $conn;
>    /**
>    * Konstruktor
>    */
>    function databaseConnection () {
>        $this->mysqlHost = $news_dbhost;   // Mysqlhost (Standard:
>localhost)
>        $this->mysqlUser = $GLOBALS["news_dbuser"];   // Username für
>Mysql-Access
>        $this->mysqlPwd  = $GLOBALS["news_dbpasswd"]; file://dazupassendes
>Passwort
>        $this->mysqlDb   = $GLOBALS["news_dbname"];   // mysql-db in
>welche die         newsletter-tabelle kommt
>    }
>}
>
>nach einem
>
>    $db = new databaseConnection;
>
>kann man dann über
>
>    $db->mysqlHost
>
>auf die Klassen-Vars zugreifen.
>
>
>MfG Clemens Gutweiler.
>--
>          web m_(at)_king -=- media solutions
>      Fa. D. Brenner  -  cg_(at)_webmaking.ms
>     Auf dem Sand 15  -  0 65 33 - 96 01 31
>       54497 Morbach -=- www.webmaking.ms
>
>
>
>
>-- 
>** Durchgehend geöffnet: http://www.php-center.de **
>Die PHP-Liste: mailto:php_(at)_php-center.de
>http://infosoc.uni-koeln.de/mailman/listinfo/php

>



php::bar PHP Wiki   -   Listenarchive