When my logged-in session expires (which still happens after very unpredictable time intervals) and my name disappears from the main menu bar and is replaced by 'login', I could still open my latest posting in the @HaruNY discussion for editing.
I was not able to reproduce that. So I don't know what caused that for you.
In the edit form the message (in a black box)
The ItemID @AaronJoseph does not match any item in the Item table.
then appears, whether I am logged on or not.
That was due to the condition for the code using $row["ItemID"] while the code within the condition used $itemid, and $itemid happened to be empty. I corrected this by assigning $itemid to the value of $row["ItemID"] when the condition is true.
I was not able to reproduce that. So I don't know what caused that for you.
That was due to the condition for the code using
$row["ItemID"]
while the code within the condition used$itemid
, and$itemid
happened to be empty. I corrected this by assigning$itemid
to the value of$row["ItemID"]
when the condition is true.