Does not want to see PHPSESSID in the url. How can be done
this ?
Answer Posted / prantik gautam
1) Make the form method from 'get' to 'post'
2) If the form method is 'get' then keep the session id in
an extra session variable and call ob_start() for buffering.
eg :
ob_start();
session_start();
$sid=session_id(); //for different sesion id for each session
$_SESSION['sid']=$sid;
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Do I need apache for php?
How is the ternary conditional operator used in php?
What is local variable in php?
What u mean by query?
Explain preg_Match and preg_replace?
What is the use of isset() in php?
How cookies are trported from browsers to servers?
What is new static in php?
Is php faster than javascript?
How arrays are used in php?
What is difference between static and constant?
How to get a total number of elements used in the array?
Tell me how is it possible to remove escape characters from a string?
What is the difference between nowdoc and heredoc?
What is the difference between get & post ?