Advertisement
Guest User

Untitled

a guest
Oct 20th, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.33 KB | None | 0 0
  1. $results = array();
  2.         if ($this->request->isXmlHttpRequest())
  3.         {
  4.             $checkedProducts = $this->request->request->get('checkedProducts');
  5.  
  6.             foreach ($checkedProducts as $checkedProduct)
  7.             {
  8.                 $results = array('checkedProducts', $checkedProducts);
  9.             }
  10.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement