Guest User

Untitled

a guest
Sep 23rd, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. function CargarEnCarro($id){
  2.  
  3. session_start();
  4. $vuelta = "hola";
  5. $producto[]=[$id, $vuelta];
  6. $_SESSION['CarroCompra'][]= $producto;
  7. //var_dump($_SESSION['CarroCompra']);
  8.  
  9.  
  10.  
  11.  
  12. for ($i=0; $i <count($_SESSION['CarroCompra']) ; $i++) {
  13.  
  14. for ($j=0; $j < count($_SESSION['CarroCompra'][$i]) ; $j++) {
  15. $valor=$_SESSION['CarroCompra'][$i][$j];
  16. echo $valor;
  17. }
  18.  
  19. }
  20.  
  21.  
  22. }
  23.  
  24. <br />
  25. <b>Notice</b>: Array to string conversion in
  26. ........ on line <b>494</b><br />
  27. Array<br />
Add Comment
Please, Sign In to add comment