You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 22, 2018. It is now read-only.
De update- en insertquery van 'Activiteit' in het Admin-gedeelte werkt niet helemaal. Zie /content/admin/edit.php.
Regel 581 t/m 598:
/* UPDATEQUERY WERKT NIET Updaten van 'Gebruikersnaam' + 'Subsitenaam' + 'Rolafkorting' lukt niet. Updaten van 'Startdatum' + 'Einddatum' + 'StartURL' + 'EindURL' lukt wel.*/// if everything is fine, update the record in the database// Update Startdatum + Einddatum + StartURL + EindURLif ($stmt = $mysqli->prepare("UPDATE Activiteit A SET Startdatum = ? , Einddatum = ? , StartURL = ? , EindURL = ? WHERE PK_Activiteit=?"))
{
$stmt->bind_param("ssssi", $Startdatum, $Einddatum, $StartURL, $EindURL, $PK);
$stmt->execute();
$stmt->close();
}
// Update Gebruikersnaam + Subsite + Rolafkortingif ($stmt= $mysqli->prepare("UPDATE Activiteit")) {
$stmt->bind_param("si", $Gebruikersnaam, $Subsitenaam, $Rolafkorting, $PK);
$stmt->execute();
$stmt->close();
}
/* UPDATEQUERY WERKT NIET */
Regel 672 t/m 686:
/* INSERTQUERY WERKT NIET Bij het inserten van het veld 'Gebruikersnaam' moet de bijbehorende PK_Gebruiker uit de tabel 'Gebruiker' gezocht worden. In de tabel 'Activiteit' wordt deze waarde opgeslagen in de column 'FK_Gebruiker'. Bij het inserten van het veld 'Subsitenaam' moet de bijbehorende PK_Subsite uit de tabel 'Subsite' gezocht worden. In de tabel 'activiteit' wordt deze waarde opgeslagen in de column 'FK_Subsite'. Bij het inserten van het veld 'Rolafkorting' moet de bijbehorende PK_Rol uit de tabel 'Rol' gezocht worden. In de tabel 'Activiteit' wordt deze waarde opgeslagen in de column 'FK_Rol'.*/// insert the new record into the databaseif ($stmt = $mysqli->prepare("INSERT Activiteit () VALUES (? ? ? ? ? ? ?)")) {
$stmt->bind_param("sssssss", $Gebruikersnaam, $Subsitenaam, $Rolafkorting, $Startdatum, $Einddatum, $StartURL, $EindURL);
$stmt->execute();
$stmt->close();
}
/* INSERTQUERY WEKRT NIET */
The text was updated successfully, but these errors were encountered:
De update- en insertquery van 'Activiteit' in het Admin-gedeelte werkt niet helemaal. Zie /content/admin/edit.php.
Regel 581 t/m 598:
Regel 672 t/m 686:
The text was updated successfully, but these errors were encountered: