Jump to content

Remove item from an array


gavin1512

Recommended Posts

Good Day All,

 

I am surrently working on an internal order system, I am able to write the items to my array called 'order' but my code for removing from an array is not working at all and just goes straight to the header. Here is the code I am using.

 

<?php

session_start();

 

foreach($_SESSION['order'] as $key => $product){

if ($_SESSION['order'][$key]['productnumber'] == $_GET['productnumber']){

unset($_SESSION['order'][$key]);

}

}

 

header("Location: productsearch.php");

exit();

?>

 

Link to comment
https://forums.phpfreaks.com/topic/84499-remove-item-from-an-array/
Share on other sites

Comment out the header function for now so we can actually debug. Put an echo statement inside the if statement to see if it is actually reaching that. Also, try doing a print_r on the $_SESSION & $_GET['productnumber'] to make sure that you are actually getting the correct value.

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.