Skip to content
Snippets Groups Projects
Commit 89b13d93 authored by tonyford's avatar tonyford
Browse files

glue string first

parent 755e1b2f
No related branches found
No related tags found
No related merge requests found
......@@ -17,7 +17,7 @@ function db_addErgebnisse( $csv, $secret ){
$C[]=$user['id'];
$csv=implode($C,',');
$csv=implode(',',$C);
$db=new db;
$sql = "REPLACE INTO Ergebnisse VALUES ( ".$csv." )";
......@@ -61,7 +61,7 @@ function db_addSpieler_old( $csv, $secret ){
}
$csv=implode($C,',');
$csv=implode(',',$C);
$db=new db;
......@@ -129,7 +129,7 @@ function db_addSpieler( $csv, $secret ){
$D[]='NOW()';
}
$csv=implode($D,',');
$csv=implode(',',$D);
$db=new db;
......@@ -165,7 +165,7 @@ function db_addStatistik( $csv, $secret ){
$C[]='NOW()';
$csv=implode($C,',');
$csv=implode(',',$C);
$db=new db;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment