Morty222 Posted October 24, 2008 Share Posted October 24, 2008 I have an array that looks like this when I unserialize it: $orderdetails = unserialize($row['order_array']); Array ( [0] => Array ( [team] => 2137 [tournament] => 24525 [gatefee] => yes [cost] => 800 [sdate] => 2009-06-11 [edate] => 2009-06-14 ) [1] => Array ( [team] => 2137 [tournament] => 24504 [gatefee] => yes [cost] => 800 [sdate] => 2009-06-25 [edate] => 2009-06-28 ) ) I get the $key from a $_GET command. I want to delete the entire key from the array when a link is clicked and goes to this page with the $key in the URL string. I tried using this: unset($orderdetails['$key']); but it doesnt work. Any help will be greatly appreciated. Link to comment https://forums.phpfreaks.com/topic/129889-delete-array-key-using-php/ Share on other sites More sharing options...
trq Posted October 24, 2008 Share Posted October 24, 2008 unset($orderdetails[$key]); Link to comment https://forums.phpfreaks.com/topic/129889-delete-array-key-using-php/#findComment-673371 Share on other sites More sharing options...
Morty222 Posted October 24, 2008 Author Share Posted October 24, 2008 Thanks, cant believe the ' ' around $key was the issue. Works fine. Link to comment https://forums.phpfreaks.com/topic/129889-delete-array-key-using-php/#findComment-673374 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.