Jump to content

Help with GET


unemployment

Recommended Posts

unemployment,

 

    Try this:

 

         


        if isset($_GET) {

               $incomingGetParm = $_GET;

        $debug = FALSE;

         if ($debug) {

	        $parm = $incomingGetParm;

	        echo "<pre><h3 style=\"color: #205E75;\">\ $incomingGetParm \n";
		        var_dump($parm);
	        echo "</pre></h3> \n";

        }

        foreach ($incomingGetParm as $getIDX => $gottenItem) {

	        $getID = $getIDX;             // This is the  part before the equal sign
	        $getParmValue   = $gottenItem;   // This is the part after the equal sign

        }


        }

 

Scot L. Diddle, Richmond VA

 

Link to comment
https://forums.phpfreaks.com/topic/240614-help-with-get/#findComment-1235882
Share on other sites

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.