Forum Moderators: coopster
<?php
ini_set("session.use_trans_sid",1);
session_start();
?>
<?php
session_start();
?>
These are the two ways to accomplish it, and there's no 'magic' involved; It's either a cookie or a query parameter -- data that is sent by the client to your server with each request.
As such, it sounds like the I-mode simulator does not support cookies, and so your "sessions" don't work.
Best practices indicate that your site should provide for clients that don't support cookies (or where the user has disabled them). So if the client supports cookies, use the cookies-based session method. If not, then use the query-string-on-URL method.
Jim