With UITabs - $_SESSION lost in the tab script
With
jquery-1.4.2.min.js
jquery-ui-1.8rc3.custom.min.js
A master script using tabs begins
- <?php
- session_start();
- ...............($_SESSION variables defined there)
- <div id="onglets" class="ui-tabs">
- <ul>
- <li>
- <?php echo $refer ?>
- <a href='./Tab1.php'></a>
- </li>
- .....................
The line 7 is of no sense but just to permit XDebug to stop
The $_SESSION variables initialized before are ok and active at this point
The Tab1.php script begins
- <?php
- session_start();
-
But at this point (line 3) the $_SESSION array is NULL
It is the same if I dont comment the <session_start() at line 2
What happens with the $_SESSION array ????????