Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这是我的问题:
echo "SELECT * FROM fornitori_elatos WHERE NomeFornitore = '".${mysql_result($elenco_fornitori,$k,"NomeFornitore")}."';";
生成此错误:
PHP致命错误:函数名必须是字符串
你能帮助我吗?
尝试这个
echo "SELECT * FROM fornitori_elatos WHERE NomeFornitore = '".mysql_result($elenco_fornitori,$k,"NomeFornitore")."';";