richie_ropey Posted March 16, 2006 Share Posted March 16, 2006 hi, i have some code[code] $j = 0; if (isset($_SESSION['c_a_num_fields'])) { for ($i=0; $i < $_SESSION['c_a_num_fields']; $i++) { if (isset($_SESSION['c_asset_value_'.$i.''])) { $sort[$j] = $_SESSION['c_asset_value_'.$i.'']; $j++; } } for ($i=0; $i < $_SESSION['c_a_num_fields']; $i++) { $_SESSION['c_asset_value_'.$i.''] = $sort[$i]; } }$j = 0;[/code]this idea of this code is to sort $_SESSION['c_asset_value_'.$i.''] so that $i goes:12345instead of13458(just an example), the reason for this happening is to do with deleting cirtain sessions, mainly cause i dont want to use the database for this sort of stuff.this code dosnt work (though i think the logic looks good :|), i was wondering if theres:a) anyway to fix the current codeb) alternative codec) a session function to do this for me (ive looked in the php manual and saw somthing about session_regenerate_id, but i dont understand how it works)thanks - Rich Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.