I have this code below as as an example .. should I use session_start() again in all the included scripts if I already have it on top in the parent file ..
here's parent.php
<?php
session_start();
include 'child1.php';
include 'child2.php';
//
?>
do child1.php and child2.php need session_start() as well in order to use session variables in them or is the first session_start of the parent.php file enough for the include files to use session variables?