试图利用MVC模式中的“收益变量”来获得用户的分数和名称,然后通过一个阵列提交意见。
这是我的游戏模式。 如何从角度看待届会的变数? 当用户提交日志时,该网页将登录。 (a) 如果用户已经存在,并且如果开始举行会议,将进行核对:_SESSION[用户名称]=$_POST[用户名称]; 如果在我的SQL询问中将用户名称定为“测试”的话,则该用户名称会发挥作用。
public function game()
{
include connect.php ;
//$query = "SELECT * FROM users WHERE USERNAME= "$this->$_SESSION["username"]." ";
$query = "SELECT * FROM users WHERE USERNAME= test ";
$result = mysql_query($query) or die (mysql_error());
$score = mysql_fetch_array($result) or die(mysql_error());
$user = $score[ username ];
$s1 = $score[ score1 ];
$s2 = $score[ score2 ];
$s3 = $score[ score3 ];
//store values to array for view to see, extract() array so views can use
them as variables
$game_model = array( user => $user, s1 => $s1, s2 => $s2, s3 => $s3);
return game $model;
}