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")."';";