Hi - I am using this code
echo "<tr><td></td><td id=tablesdirhea d>Property Information</td><td
id=tablesdirhea d width='100'>Age nt Name</td><td id=tablesdirhea d
width='150'>Con tact Info</td></tr>\n";
while ($myrow = mysql_fetch_row ($result))
{
$row = 1-$row;
$color = ($row==0)?"#F5F 5F5":"#F0F8FF" ;
printf("<tr bgcolor=$color> <td>%s</td><td>%s</td><td>%s</td><td>%s</
td></tr>\n",
$myrow[5], $myrow[3], $myrow[0], $myrow[1]);
}
echo "</table>\n";
?>
But would like to give the fourth "$myrow[1]" a PHP link like
<a class="dir" href="processfo rmImage.php?act ion=&ID=<?php echo
$row["StoreID"]; ?>">$myrow[1]</a>
But can't seem to find anywhere on the web that shows this can even be
done
echo "<tr><td></td><td id=tablesdirhea d>Property Information</td><td
id=tablesdirhea d width='100'>Age nt Name</td><td id=tablesdirhea d
width='150'>Con tact Info</td></tr>\n";
while ($myrow = mysql_fetch_row ($result))
{
$row = 1-$row;
$color = ($row==0)?"#F5F 5F5":"#F0F8FF" ;
printf("<tr bgcolor=$color> <td>%s</td><td>%s</td><td>%s</td><td>%s</
td></tr>\n",
$myrow[5], $myrow[3], $myrow[0], $myrow[1]);
}
echo "</table>\n";
?>
But would like to give the fourth "$myrow[1]" a PHP link like
<a class="dir" href="processfo rmImage.php?act ion=&ID=<?php echo
$row["StoreID"]; ?>">$myrow[1]</a>
But can't seem to find anywhere on the web that shows this can even be
done
Comment