Jump to content

Request Variable/QueryString Issue


spacepoet

Recommended Posts

Hi:

 

I am trying to pass/request a Variable/QueryString from one page to another, but it isn't working.

 

Seems like it would be simple, so maybe I am overlooking the obvious.

 

I have the 1st page:

<a href="NewCity.php?abbr_state=<?php echo $abbr_state ?>">Insert New City</a>

 

Writes the URL properly - CityList.php?abbr_state=CT

 

The 2nd page:

<?php

$abbr_state = $_REQUEST['abbr_state'];

?>


<form>

State: <input type="text" name="abbr_state" value="<?php echo $abbr_state; ?>" readonly=""/><br />

</form>

 

But it does not get the variable/QueryString for "CT" and add it to the form field (it's not the "readonly" causing it).

 

Why?

 

What did I miss?

Link to comment
https://forums.phpfreaks.com/topic/228332-request-variablequerystring-issue/
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.