note 99825 deleted from book.array by danbrown

[email protected]
Newsgroups php.notes
Message-ID <[email protected]>
Note Submitter: v-2osel at live dot com 

----

if you need to pass information using querystring like this
..yourProgram.php?value1=value&value2=value&value3=value, you can create a variable for each value keys and make it equal to the value.. here's the code

<?php
$qs = explode('&',$_SERVER['QUERY_STRING']); 
foreach($qs as $key=>$value)
  {
  $temp = explode('=',$value);
  ${current($temp)} = end($temp);
  }
?>
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.