New to PHP coding here. And by new, I mean I don't really understand what I'm doing
. Please be patient with me.
I need to know what parts to add/remove from the coding below in order to:
Any help from someone way more experienced is greatly appreciated.

I need to know what parts to add/remove from the coding below in order to:
- Get rid of the vote button/elements
- Make it so that when a name is clicked, the href will take them to "vote.php" instead of attempting to link to where the image is
- RESOLVED - Add the class "smallmenu" to each displayed result
PHP Code:
<?php
include("templates/mysql_connect.php");
//FOR LETTERS: A-F
$query = "SELECT * FROM seniors WHERE last_name BETWEEN 'A%' and 'FZ%' ORDER BY last_name ASC";
$result = @mysql_query ($query);
echo
'<a href="sencha.php" class="bigmenu"><img src="images/backarrow.png" alt="Back to Senior Challenge Home" class="arrowleft indexicon" /><u>Back</u></a><br />';
while ($row = mysql_fetch_array ($result)){
echo "<a href=\"$row[pic_url]\" title=\" <form action ="/tally.php?sen_id=$row[sen_id]" method="post">
$row[first_name] $row[last_name] - $row[school] <br />
<input name="submit" align="right" type="submit" value="Vote" >
</form> \">$row[last_name], $row[first_name]</a><br/>";
}
echo '</p>';
?>
Comment