Also, ich habe in meiner Datenbank eine options Tabelle.
Die sieht folgendermaßen aus: ein Beispieleintrag
id=4;
var_name=$admin_email
var_value="2in@slipknot.at"
description=# The e-mail adress of the adminstrator
Nun habe ich eine options.inc.php Datei, welche ich in jede Seite include:
Mit $opt_var_name."=".$opt_var_value.";"; setze ich die Variablen wieder zusammen. Als erstes hatte ich die in einem eval() drinnen, allerdings funktioniert das auch so. Wozu brauche ich dann eval?
Die sieht folgendermaßen aus: ein Beispieleintrag
id=4;
var_name=$admin_email
var_value="2in@slipknot.at"
description=# The e-mail adress of the adminstrator
Nun habe ich eine options.inc.php Datei, welche ich in jede Seite include:
PHP-Code:
<?php
$opt_sql = "SELECT * FROM options";
$opt_result = mysql_query($opt_sql,$dbhandler);
$opt_rows = mysql_num_rows($opt_result);
for($x=0; $x < $opt_rows; $x++)
{
$opt_id = mysql_result($opt_result,$x,"id");
$opt_var_name = mysql_result($opt_result,$x,"var_name");
$opt_var_value = mysql_result($opt_result,$x,"var_value");
$opt_var_name."=".$opt_var_value.";";
}
?>
Kommentar