I have a little question.
I have few stored values in session Array. These values are ID's of products. After that i want to display products from my database, but this is not working propertly for me. Can someone help me a little? :) (I am still learning :) )
<?php
include 'includes/dbconnect.php';
$orderid = $_SESSION['order'];
foreach ($orderid as $value) {
    $sql="SELECT * FROM product WHERE productID LIKE '%$value%'";
    $result=$conn->query($sql);
    while($row=$result->fetch_assoc()){ 
        echo '<tr>';
        echo '<td>'.$row["tag"].'</td>';
        echo '<td>'.$row["price"].',- Kč</td>';
        echo '<td><a href="product.php?id='.$row["productID"].'"><img src="images/'.$row["tag"].'.jpg" width=70"></a></td>';
        echo '<td>1</td>'   ;
        echo '<td><a href="#" class="btn btn-danger btn-lg">X</a></td>';
    }
}
?>
var_dump($orderid); shows:
array(1) {
    ["order"]=> array(10) {
        [0]=> string(2) "44"
        [1]=> string(2) "46"
        [2]=> string(2) "44"
        [3]=> string(2) "54"
        [4]=> string(1) "1"
        [5]=> string(2) "44"
        [6]=> string(1) "1"
        [7]=> string(2) "44"
        [8]=> string(2) "47"
        [9]=> string(2) "74"
    }
}
 
     
    