Correct syntax
Posted: Sat Mar 08, 2008 6:02 am
Code: Select all
<?php echo "<a href = \'#\' onclick = \"."fnCheck(".$row['user_name']."\")>"<a/>. $row['user_name']?>A community of PHP developers offering assistance, advice, discussion, and friendship.
http://forums.devnetwork.net/
Code: Select all
<?php echo "<a href = \'#\' onclick = \"."fnCheck(".$row['user_name']."\")>"<a/>. $row['user_name']?>Code: Select all
echo '<a href="#" onclick="fnCheck("' . $row['user_name']. '")><a/>' . ' ' . $row['user_name'];