@ob_start();
@session_start();
@header("...");
echo session_id()."---->this is session id, if session has created.";
echo " The Name has been create in session is ".session_encode();
พวกนี้ก็แล้ว พอจะมีวิธีไหนบ้างครับ เมื่อวานก็ไม่เห็นเป็นไร ตอนนี้งงมากครับ ขอบคุณครับ
*/
$strUsername = trim($_POST["tUsername"]);
$strPassword = trim($_POST["tPassword"]);
$name=$strUsername;
$password=$strPassword;
$objResult=$callLogin->loginCon($name,$password);
if($objResult)
{
//*** Session ***//
$_SESSION["Username"] = $strUsername;
$_SESSION["Password"] = $strPassword;
session_write_close();
echo "<p align="."center".">welcome ".$_SESSION["Username"]."!!!!"."</p>";
/*อันนี้หน้า index*/
<?php
@ob_start();
@session_start();
@header("...");
echo session_id()."---->this is session id, if session has created.";
echo " The Name has been create in session is ".session_encode();
include "view/page/origin.php";
?>