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
What is $_ env in php?
What is a string in r?
Which function would you use to insert a record into a database in php?
Is php easier than node?
How to check an key is exists in array?
How to return ascii value of character in php?
How to invoke a user function?
What is needed to be able to use image function?
How to find a substring from a given string in php?
Is not null mysql?
How variables are passed through arguments?
What is constructors and destructors?
Which function would you use to determine the length of a string in php?
What are the differences between session and cookie?
How do you check is php not empty?