Hi All,
I have a table in my ms sql database and am using PHP.
What I am trying to do is:
Foreach User in table, get his age and favorite color. And for each entry i want to edit it before it is displayed. For example Each User that is retrieved and displayed on the webpage will be hyperlinked. His/her age will be hyperlinked and the color will also be hyperlinked.
Incase I wasn't clear above, let me explain in a short psuedo-code (sorry):
foreach(item i in table.items)
{
var $name = i.name;
var $age = i.age;
var $color = i.color;
webpage.display("<a href="http://domain.com/page.php?name=$name">$name</a>");
webpage.display("<a href="">$age</a>");
webpage.display("<a href="">$color</a>");
}
Can somebody please help me/put me in the right direction?
Thank you