i have this <a> tag here and i want to send the value of the specific selected row.. can you help me please?
here is my work
Code: Select all
<?php
@require('connection.php');
$query = "SELECT * FROM SUBJECTS WHERE CODE = '$code'";
$result = mssql_query($query);
$count = mssql_num_rows($result);
while($row = mssql_fetch_array($result))
{?>
<li class="menu">
<a class="noeffect" href="http://localhost/whereitgoes.php">
<img src="../thumbs/mail.png"; /><span class="name">
<?php
echo $row['CODE'];
?>
</span><span class="arrow"></span></a></li>
<?php }?>how can i get the selected value?