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
How to get the total number of values in an array?
Which is useful for method overloading?
What is member variable?
Why are sessions used?
Which operator is used to combine string values in php?
What is printf in php?
What is the Pipe Symbol represented?
What is implode() in php?
How to find current date and time?
Do you know what is the differences between $a != $B and $a !== $B?
Differentiate echo vs. Print statement.
Define urlencode() and urldecode() used in php?
I need to know about the courses which are useful in corporate companies.. especially php/mySQL, Java/j2ee, .NET.. also tell if any other courses are valuable
Where php basically used?
Which function is used in php to count the total number of rows returned by any query?