Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~2K People Reached
Favorite Forums
Favorite Tags
php x 5
Member Avatar for nduarte

I was recently posting information and using $_GET to move between pages. However, becasue of security concerns, I have to change this. How do you pass a SESSION variable to a new page from an array. Here is what I used to have [CODE=PHP] while($data = mysql_fetch_array($result)) { echo '<a …

Member Avatar for Will Gresham
0
2K
Member Avatar for nduarte

So I am trying to work on securing a database that I use by using $_POST instead of $_GET. Here is how I was origianally doing it: [CODE=php] while($data = mysql_fetch_array) { echo '<a href="targetpage.php?id=' . $data['id'] . '">View</a>'; } [/CODE] The page that it goes to has the code: …

Member Avatar for chrishea
0
119