inhal einer globalen Variable in Normale Variable Übernehmen

Einklappen
X
 
  • Filter
  • Zeit
  • Anzeigen
Alles löschen
neue Beiträge

  • inhal einer globalen Variable in Normale Variable Übernehmen

    Hi,
    ich hab das Problem das ich eine inhalte einer globalen Variable in eine Normale Variable Übernehmen will,
    wie geht das?
    $variable = $RS->value("anerho"));
    so geht es nicht und
    und $va=$RSloc->value("loc_userid");
    so auch nicht (
    Fatal error: Call to a member function on a non-object in /var/www/dimecity/prod/game/classen2.php on line 17
    )
    Das Script:
    <?php
    include ("includes/klasse.php");
    $RS = new db_query;
    $fun1 = new db_query;
    $RS->execute("SELECT * FROM dime_auto_abrechnung order by id");

    /* id, userid, aktion, ware, anzahl, von, bis, ervon, erbis, anerho, sterho */
    $times = time();
    echo "unix standard time ist $times <br>";
    while ($RS->next()){
    if ($RS->value("von") < $times && $RS->value("bis") > $times) {

    if($RS->value("aktion") == plus){
    echo "test";
    $va=$RSloc->value("loc_userid");
    echo $va;
    }
    }
    }

    ?>


    Vielen Dank im Voraus

    MfG Markus

  • #2
    $VARxyz = $GLOBALS["deineVARxyz"]; ???

    gruss

    Kommentar

    Lädt...
    X