Zuerst erkläre ich einige der Änderungen, die ich an Ihrem Code vorgenommen habe.
- Back-Ticks sind nicht erforderlich, es sei denn, Sie verwenden ein reserviertes Wort, daher habe ich sie entfernt
- Sie definieren bereits
$id
als$id = $_SESSION['memberID'];
also habe ich$stmt->bindParam(":id", $_SESSION['memberID'], PDO::PARAM_STR);
geändert - Wenn Sie Ihre Parameter binden, müssen Sie sie nicht mit einem Array ausführen, also habe ich
$stmt->execute(array(':email' => $_POST['email'], ':location' => $_POST['location'], ':id' => $id));
zu$stmt->execute();
- Die
action
in Ihrem Formular muss wiedergegeben werden.
Dies ist der resultierende Prozess
<?php
if(isset($_POST['submit'])) {
$email = $_POST['email'];
$location = $_POST['location'];
$id = $_SESSION['memberID'];
$sql = "UPDATE members SET email=:email, location=:location WHERE memberID=:id";
$stmt = $db->prepare($sql);
$stmt->bindValue(":email", $email, PDO::PARAM_STR);
$stmt->bindValue(":location", $location, PDO::PARAM_STR);
$stmt->bindValue(":id", $id, PDO::PARAM_STR);
$stmt->execute();
}
?>
Dies ist die resultierende Form (leichter zu lesen mit Einrückungen)
<form role="form" method="POST" action="<?php echo $_PHP_SELF ?>">
<div class="form-group">
<label class="control-label">Email</label>
<input type="text" value="<?php echo $_SESSION['email'] ?>" name="email" id="email" class="form-control"/>
</div>
<div class="form-group">
<label class="control-label">Location</label>
<input type="text" value="<?php echo $_SESSION['location'] ?>" name="location" id="location" class="form-control"/>
</div>
<div class="margiv-top-10">
<input type="submit" name="submit" class="btn green" value="Update" >
<a href="profile.html" class="btn default">Annuller </a>
</div>
</form>