My AJAX code is passing QueryString to a PHP file. The QueryString looks like this:
var strUrl = "./lib/filldropdown.php?DivName = " + DivName + "&DropDownControlName = " + DropDownName + "&SqlQuery = " + SqlQuery;
In the file "filldropdown.php", I want to fetch the values from the query string. How to do this without using GET? And also, please let me know whether the query string is written correctly or not.