-2
可能重複:
Syntax error, unexpected T_CONSTANT_ENCAPSED_STRING in PHP會話管理
你好我想在PHP設計一個網頁來實現類似的登錄會話和概念,並logout.Below是我的基本碼。
<?php
session_start();
$host = "localhost";
$username = "USERNAME";
$password = "PASSWORD";
$db = "test";
@mysql_connect($host,$username,$password) or die ("error");
@mysql_select_db($db) or die("error");
?>
我上線3,請幫助得到一個錯誤的unexpected_T_CONSTANT_ENCAPSED_STRING刪除此error.Is它什麼毛病SOL注入?
看這個問題:http://stackoverflow.com/questions/2719350/syntax-error-unexpected-t-constant-encapsed-string-in-php – kpotehin
有你嘗試過使用框架?你不應該寫你自己的登錄代碼;安全風險太大 –
您還應該使用'mysqli'函數而不是舊的不推薦使用的'mysql'。 – Cyclonecode