Hallo,
ich möchte über Ajax eine SESSION-Variable ändern:
so wird die Variable geändert. Jetzt möchte ich aber, dass die Variable
$_SESSION['idtodialog'] über alle Klassen gebraucht werden kann,ohne dass ich den Browser neu lade:
also:
ich möchte über Ajax eine SESSION-Variable ändern:
PHP-Code:
//ajax
$.post('./dialogs/sessionVariable/idtodialog.php', { 'idtodialog' : '".$id."'});
//idtodialog.php
if(!isset($_SESSION["idtodialog"]))
$_SESSION["idtodialog"] = 0;
if(isset($_POST["idtodialog"]))
$_SESSION["idtodialog"] = $_POST["idtodialog"];
$_SESSION['idtodialog'] über alle Klassen gebraucht werden kann,ohne dass ich den Browser neu lade:
also:
PHP-Code:
class dialogs {
public function getLinkElements ($location) {
$link_sql = "SELECT i, column_lnk FROM table WHERE id = '".$_SESSION["idtodialog"]."';";
$link_results = $this->db->query($link_sql);
while ($links = $link_results->fetch_assoc()) {
//tu was
}
}
}
Kommentar