if (isset($_REQUEST['param']))
{
// param was set in the query string
if(empty($_REQUEST['param']))
{
// query string had param set to nothing ie ?param=¶m2=something
}
}
Actually I want to read the contents that come after the search query, when it is done. The problem is that the URL only accepts POST methods, and it does not take any action with GET method...
I have to …
What I want is get an object from an API with a HTTP (eg, jQuery's AJAX) request to an external api. How do I start? I did research on Mr Google but I can't find anything helping.
Im starting to …