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.
私はこのphpコードを使用しています
echo " onclick='myFunction(" . $row['username'] . ")'"
それは私にこの結果を与える
onclick="myFunction(Francis88)"
しかし、私はこれが欲しい:
onclick="myFunction('Francis88')"
これを取得するためにphpコードをどのように変更すればよいですか?