Anmelden
Wenn Sie bereits einen Benutzer angelegt haben, melden Sie sich hier an.
Falls Sie noch nicht angemeldet sind, erstellen Sie zuerst einen Benutzer.
Benutzer anlegensession_start();
$GLOBALS["ServerURL"] = "http://".$_SERVER['HTTP_HOST']."/didtest/merge/";
//$GLOBALS["ServerURL"] = "http://".$_SERVER['HTTP_HOST'].dirname($_SERVER['SCRIPT_NAME'])."/";
$GLOBALS["UserID"] = -1;
$GLOBALS["UserName"] = "";
$GLOBALS["isLogin"] = false;
$GLOBALS["isAdmin"] = false;
if(isset($_SESSION['UserID'])){
$GLOBALS["UserID"] = $_SESSION['UserID'];
$GLOBALS["UserName"] = $_SESSION['UserName'];
if($_SESSION['isAdmin']){
$GLOBALS["isAdmin"] = true;
}else{
$GLOBALS["isLogin"] = true;
}
}
function getMathML($Text){
// Translate MathML Tags back
$foundMath = strpos($Text, '</math>');
while($foundMath){
$foundMathFrom = strpos($Text, '<math');
$foundMathTo = strpos($Text, '</math>');
$mathCode = substr($Text,$foundMathFrom,($foundMathTo - $foundMathFrom)+13);
$mathCode = str_replace('
','',$mathCode);
$mathCode = str_replace(' ','',$mathCode);
$mathCode = html_entity_decode($mathCode);
$replaceBefore = substr($Text,0,$foundMathFrom);
$replaceAfter = substr($Text,$foundMathTo+13);
$Text = $replaceBefore.$mathCode.$replaceAfter;
$foundMath = strpos($Text, '</math>');
}
return $Text;
}
?>
$GLOBALS["dbServer"] = "localhost";
$GLOBALS["dbUser"] = "didtest";
$GLOBALS["dbPass"] = "b65KxL7z";
$GLOBALS["db"] = "didtest_merge";
/*
$GLOBALS["dbServer"] = "localhost";
$GLOBALS["dbUser"] = "root";
$GLOBALS["dbPass"] = "xAmpp1088801";
$GLOBALS["db"] = "mathedb";
*/
?>
Wenn Sie bereits einen Benutzer angelegt haben, melden Sie sich hier an.
Falls Sie noch nicht angemeldet sind, erstellen Sie zuerst einen Benutzer.
Benutzer anlegen