简体   繁体   中英

variable variables in php with mysql_result

this is my problem:

echo "SELECT * FROM fornitori_elatos WHERE NomeFornitore = '".${mysql_result($elenco_fornitori,$k,"NomeFornitore")}."';";

generate this error:

PHP Fatal error:Function name must be a string

can you help me?

尝试这个

echo "SELECT * FROM fornitori_elatos WHERE NomeFornitore = '".mysql_result($elenco_fornitori,$k,"NomeFornitore")."';";

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM