First of all... THANKS to everyone here. I am new to this and know nothing compared to you guys but everyone has been very nice and hasn't gone out of their way to make me feel dumb for not knowing this stuff.
My question, I am working on displaying data from a mysql database
I want
PHP Code:
echo "<td >".$row['field_6']."</td>";
to be a link.
I tried this:
PHP Code:
echo "<td><a href=\"fighter_bio.php?id=<? echo $id; ?>\".$row['field_6]."</a></td>";
but it didn't seem to work. Does anyone have any suggestions for fixing this code?
|