lse123
02-26-2008, 01:49 PM
session_start() must included in a page in which, it get prints a session var ? If yes only at START OF PAGE or to the place exactly the session var get echoed ?
When a php page included in an email message:
ob_start();
include('b-to-customer.php'); //include('book-confirm-to-customer.php');
$message_customer = ob_get_clean();
then session vars print on the email on not ? I do NOT see to get print (in the email) ...
<?php session_start();
echo $_SESSION['m'];
unset($_SESSION['m']); ?>
When a php page included in an email message:
ob_start();
include('b-to-customer.php'); //include('book-confirm-to-customer.php');
$message_customer = ob_get_clean();
then session vars print on the email on not ? I do NOT see to get print (in the email) ...
<?php session_start();
echo $_SESSION['m'];
unset($_SESSION['m']); ?>