Lid |
|
Bij onderstaande code krijg ik de volgende error:
Parse error: syntax error, unexpected '=' in C:\wamp\www\login\config.php on line 4
$bestand_config = fopen("config.php","w"); //we gaan nu config.php aanmaken. 'w' betekent dat we er iets in gaan schrijven
fwrite($bestand_config,"<?php\n");
fwrite($bestand_config,"mysql_connect (\"".$_POST['host']."\", \"".$_POST['username']."\" , \"".$_POST['wachtwoord']."\");\n");
fwrite($bestand_config,"mysql_select_db (\"".$_POST['databasenaam']."\");\n");
fwrite($bestand_config,"$locatie = ".$_POST['locatie'].";");
fclose($bestand_config); //nu sluiten we config.php weer
$bestand_config = fopen("config.php","w"); //we gaan nu config.php aanmaken. 'w' betekent dat we er iets in gaan schrijven fwrite($bestand_config,"<?php\n"); fwrite($bestand_config,"mysql_connect (\ "".$_POST['host']."\", \"".$_POST['username']."\" , \"".$_POST['wachtwoord']."\");\n"); fwrite($bestand_config,"mysql_select_db (\"".$_POST['databasenaam']."\");\n"); fwrite($bestand_config,"$locatie = ".$_POST['locatie'].";"); fclose($bestand_config); //nu sluiten we config.php weer
Als ik in hdet config bestand kijk, zie ik dat er geen $locatie staat. Hoe komt dit?
|