Brand Hill Posted July 9, 2007 Share Posted July 9, 2007 If I may set up the problem: On my index.php file I have a small list being created on a small column which looks like this: Feature Articles (Article Image 1) Article Heading 1 - Article Type 5 . . . (Article Image 5) Article Heading 5 - Article Type 5 It is currently being created by this bit of code: while($row = mysql_fetch_array($result)) { echo "<u>"; echo $row['feat_image']; echo "<br />"; echo $row['title_primary']; echo " - "; echo $row['article_type']; echo "</u>"; echo "<br />"; echo "<br />"; } What I am trying to do is create an anchor that encompasses the three datatypes (as it is currently represented by the underscore tags) to a page called article.php. This is how the second page in question looks like right now. <?php echo $_GET["title_primary"]; echo "<br />"; echo $_GET["title_secondary"]; echo "<br />"; echo $_GET["byline"]; echo "<br />"; echo $_GET["article_body"]; echo "<br />"; ?> I know that the answer is so simple that it's laughing in my face, but after two days of beating my head against the wall, I am really in need of a helping hand. Quote Link to comment Share on other sites More sharing options...
hackerkts Posted July 9, 2007 Share Posted July 9, 2007 Sorry, I don't get what you mean. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.