I noticed that in SO there are a lot of mysterious users. I mean users who generally behave as follows:
Scene 1
Post a general question about a general problem on their code. These kind of questions are generally followed by comments such as "Should we guess what your code is or you can provide it?".
Sample:
I'm working on a project that uses session but $_SESSION seems to be empty, what should i do?
Scene 2
After they feel like the need to post their code, they post it partially or incomplete most of the time full of typo. (This is kinda mysterious and you, as reader, feel like these code must be something really secret because they seems not to care too much about the answer itself since they provide such few details that other people must ask for more).
Sample:
if ($_SESSION['ix_logged']) {
echo "Welcome back". $_SESSION['user_name
} else {
echo $message;
}
EDIT: I'm getting the following error: Notice: Undefined $_SESSION on line X
Scene 3
Someone understands that it must be partial code and asks for the missing part. At this point the questioner just fixes his code and tries to convince the reader that the problem is in that part of the code and not in the one that is missing. (Here you understand it is some kind of super secret project, perhaps under NDA.)
if ($_SESSION['is_logged']) {
echo "Welcome back". $_SESSION['user_name'];
} else {
echo $message;
}
EDIT: Oh, yes sorry i made a typo :) but i'm sure the problem is there since the line of the error is the first i posted.
Scene 4
So the reader ask for it anyway assuring that the code will remain between them and nobody else will see it. But the questioner is worried about it anyway.
Reader: Hey man seriously, i'll pay you 100 bucks if you post your entire code. Also it's not sure that the error line is referring to that line, it could be else where. Questioner: Ehm, listen to me and trust me: the problem is there.
Scene 5
So the reader asks him to paste it in Paste bin that has a "private" feature so that the code is protected and to email the needed information to access that private content. But the answer doesn't trust you and reject the proposal.
Reader: You could past it on pastebin, you'll be able to keep it private and you can pass the needed information at reader@saintandmartyr.com Questioner: I don't have email...
Scenes 6, 7, 8, 9 You try with no success to get the code.
Scene 10 You find the way to get the code with Jedi mind manipulation and you get in front of the code and you are thinking about killing that guy wherever he is.
Sample:
$i = 1;
if ($i = 1) {
session_destroy();
$_SESSION = NULL; // kill it Johnny, kill it!
}
$message = "Hidden message";
if ($_SESSION['is_logged']) {
echo "Welcome back". $_SESSION['user_name'];
} else {
echo $message;
}
