Advertisement
Guest User

Untitled

a guest
Apr 27th, 2015
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. $_SESSION['recent'][] = array(
  2. 'id' => $productimgfolder,
  3. 'title' => $product['Product']['title'],
  4. 'link' => $_SERVER['REQUEST_URI'],
  5. 'image' => 'img/products/'.$productimgfolder.'/'.$product['Product']['mainpicture']
  6. );
  7. $_SESSION['recent'] = array_slice($_SESSION['recent'],-4);
  8.  
  9. if(!isset($_SESSION['recent']))
  10. {
  11. $_SESSION['recent'] = array()
  12. }
  13.  
  14. if(!array_key_exists ($productimgfolder, $_SESSION['recent']))
  15. {
  16. $_SESSION['recent'][$productimgfolder] = array(
  17. 'id' => $productimgfolder,
  18. 'title' => $product['Product']['title'],
  19. 'link' => $_SERVER['REQUEST_URI'],
  20. 'image' => 'img/products/'.$productimgfolder.'/'.$product['Product']['mainpicture']
  21. );
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement