I am working on a project where i need to access clean URL\'s always i.e no parameters can be passed in the URL for getting values on another page.
Can anyone please sug
For Clean URL's i prefer you may use HTTP POST Method. Hope that helps.
Else, you can use AJAX with jQuery to submit the values to another page.
$.ajax({url:"action.php",success:function(result){
$("div").html(result);
}});
Check out w3schools to get started with AJAX : http://www.w3schools.com/jquery/jquery_ajax.asp
No support for SESSION since i don't like writing php code inside my web page.