Click here to Skip to main content
15,867,568 members

Comments by SquidSK (Top 2 by date)

SquidSK 17-Oct-12 21:49pm View    
Given you're newing up your list every time you click the button you should only ever have one thing in your datagrid. What is the behaviour you're talking about when you say "nothing occurred" as that isn't very specific.
SquidSK 21-Sep-12 10:32am View    
You're probably thinking about $_RESPONSE not $_POST. No post value is ever visible to a user on the url. You can retrieve a value from both $_GET and $_RESPONSE or you can retrieve a value from $_POST and $_RESPONSE, but not from $_GET and $_POST since they are filled by HTTP GET method and HTTP POST method respectively, which are not equivalent.

See http://www.w3schools.com/php/php_post.asp