rscott7706 Posted March 30, 2008 Share Posted March 30, 2008 I have racked my limited brain, and searched endlessly on the subject. To now, haven't been able to figure out what s/b a simple one. I have a table with two fields - Class and link. Class is populated with things like Automobile, Construct Equip, etc. link is populated with the links I want users to go to when the click on Class. In searching I thought I found the solution, as shown here: echo "<a href='$row[link]'>".$row[Class]."</a>"; But alas it gives me an error: Parse error: parse error, unexpected T_CLASS, expecting ']' in /home/content/s/d/r/sdrental/html/rentals-class-only4.php on line 118 Am I way off base here? Can anyone help? Thanks in advance!! Link to comment https://forums.phpfreaks.com/topic/98561-link-and-link-based-on-two-fields/ Share on other sites More sharing options...
rscott7706 Posted March 30, 2008 Author Share Posted March 30, 2008 Never mind.... Got it. Here is the code in case anyone ever needs it: echo '<a href="'.$row['link'].'">'.$row['Class'].'</a><br>'."\n"; Sorry to bother everyone. Link to comment https://forums.phpfreaks.com/topic/98561-link-and-link-based-on-two-fields/#findComment-504436 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.