0 Members and 1 Guest are viewing this topic.
10 IT\'S THE FINAL COUNTDOWN20 FOR C = 1 TO 230 DA-NA-NAAAA-NAAAA DA-NA-NA-NA-NAAAA40 DA-NA-NAAAA-NAAAA DA-NA-NA-NA-NA-NA-NAAAAA50 NEXT C60 NA-NA-NAAAA70 NA-NA NA-NA-NA-NA-NAAAA NAAA-NAAAAAAAAAAA80 GOTO 10
amigakit wrote:in interests of security, please edit the session IDs out of this thread ASAP! Thanks.
tonyyeb wrote:Why is the session URL sensitive? I've seen people post links with the session ID in, are people putting personal data at risk?
weirdami wrote:I'd say perhaps that in the further interest of security that those session ID things be not used. If that's impossible, maybe do like how there is a generic URL that loads things from a session ID accessible page.
LoadWB wrote:The PHPSESSION value stored in a Cookie or POST identifies the session to a new page in order to populate the $_SESSION super-global. So you can't store the session ID in a $_SESSION variable and expect it to work.
LoadWB wrote:It's actually easier than it seems. Before you send any output to the browser, issue a start_session() then you can begin populating $_SESSION variables. On the next page, issue a start_session() again and you can use the variables. When you're done, issue a session_destroy() and that's it.