$userid = ($vbulletin->userinfo['userid']);
$sql3 = MysqL_query("SELECT * FROM table WHERE ID='$_POST[hiddenID]'");
while ($row = MysqL_fetch_array($sql3)){
$toon = $row['toonname'];
$laff = $row['tlaff'];
$type = $row['ttype'];
if ($type == 1){
$type == "Bear";
} elseif ($type == 2){
$type == "Cat";
} elseif ($type == 3){
$type == "Dog";
}
}
但是,这不起作用.
基本上,每种类型的“表格”中都有不同的值. 1表示熊,2表示猫,3表示狗.
感谢任何人可以帮助我在脚本中查看问题!
最佳答案
你正在比较,而不是分配:
if ($type == 1){
$type = "Bear";
}
您将值与==或===进行比较.
您可以使用=分配值.
您可以使用switch语句编写更少的代码来实现相同的结果,或者只使用一堆没有elseif的ifs.
if ($type == 1) $type = "Bear";
if ($type == 2) $type = "Cat";
if ($type == 3) $type = "Dog";
我会为它做一个函数,像这样:
function get_species($type) {
switch ($type):
case 1: return 'Bear';
case 2: return 'Cat';
case 3: return 'Dog';
default: return 'Jeff Atwood';
endswitch;
}
$type = get_species($row['ttype']);