Jump to content

taking values from URL


freelance84

Recommended Posts

Here's another way:

 

function get_params()
{
  unset($_GET); //Frees up some memory
  $uri = explode('?', $_SERVER['REQUEST_URI']);
  $queryStr = $uri['1'];
  $vars = explode('&', $queryStr);
  $getVars = array();
  foreach ($vars as $var)
  {
    $exp = explode('=', $var);
    $getVars[$exp[0]] = $exp[1];
  }
  return $getVars;
}

 

And then you can use it to make any variable contain an array with your get variables!

 

$some_var = get_params();

//your 'tester1' can be accessed by
$some_var['table']

 

I know the above works because I read it on 4chan.

Here's another way:

 

function get_params()
{
  unset($_GET); //Frees up some memory
  $uri = explode('?', $_SERVER['REQUEST_URI']);
  $queryStr = $uri['1'];
  $vars = explode('&', $queryStr);
  $getVars = array();
  foreach ($vars as $var)
  {
    $exp = explode('=', $var);
    $getVars[$exp[0]] = $exp[1];
  }
  return $getVars;
}

 

And then you can use it to make any variable contain an array with your get variables!

 

$some_var = get_params();

//your 'tester1' can be accessed by
$some_var['table']

 

I know the above works because I read it on 4chan.

 

Why would you ever do that?

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.