As you can see here here my site uses sessions to send some data from pedidos.php to procesa_pedido.php.
While this works on PC, it just won't work on my iPhone.
After some research, I've found that this might have something to do with enabling cookies. I want to avoid the user from having to "accept using cookies" (not user friendly).
Any help is much appreciated. Here's the code that works on PC and not on iPhone:
First php
session_start();
$apunte=$row['apunte'];
$_SESSION['apunte']=$apunte;
Second php
session_start();
$apunte=$_SESSION['apunte'];
echo $apunte; echo '<br/>';