Tuesday, 4 September 2018
Subscribe to:
Post Comments (Atom)
# table accounts
id | username | password
# table posts
id | posterid (this is the player id) | message
# table players
id | account_id | name
function can_we_edit_post($pid) {
global $db;
// Let's see if they have permission to edit
$stmt = $db->prepare("SELECT * FROM players pl a JOIN posts p ON p.id = $pid WHERE pl.account_id = 34767");
$stmt->execute(array(34767));
$row = $stmt->fetch();
// Check if we got any rows
if ($row) {
return true;
} else {
return false;
}
}
if (can_we_edit_post(666)) {
echo "You may edit this post.";
} else {
echo "You do not own this post.";
}
a
after pl
, so your query is probably failingSELECT * FROM players pl a JOIN posts p ON p.id = $pid WHERE pl.account_id = 34767
^
// Let's see if they have permission to edit
$stmt = $db->prepare("SELECT * FROM players pl JOIN posts p ON p.id = ? WHERE pl.account_id = ?");
$stmt->execute(array($pid, 34767));
$row = $stmt->rowCount();
a
the query returns a result, with the a
the query fails with an error.true
for every player, because you hardcoded the pl.account_id
-WHERE pl.account_id = 34767
posterid
matches the pl.id
for the specific post.id
which you can do by adding - AND p.posterid = pl.id
to your JOIN
function can_we_edit_post($pid,$aid) {
global $db;
// Let's see if they have permission to edit
$stmt = $db->prepare("SELECT * FROM players pl JOIN posts p ON p.id = ? AND p.posterid = pl.id WHERE pl.account_id = ?");
$stmt->execute(array($pid, $aid));
// Check if we got any rows
if ($stmt->rowCount()) {
return true;
} else {
return false;
}
}
if (can_we_edit_post(666,34767)) { // change 34767 to each player account_id ie. $player->account_id
echo "You may edit this post.";
} else {
echo "You do not own this post.";
}
Hello Friends! I am Ramana a part time blogger from Hyderabad.
0 comments:
Post a Comment