Hi All.
heres my code. i query i pull works and this outputs as it should.
while ($row = mysql_fetch_array($result, MYSQL_ASSOC)) {
printf("ID: %s Name: %s Logged By: %s", $row["callid"], $row["problem"], $row["userid"]);
echo "\n";
echo "<br>";
echo "<br>";
}
however, this looks very boring.
how can i add HTML formatting in so that the bit that says Name and Logged by could be one typoe for text and then the variables another?
i would also like to have a hyperlink included based around the id.
anyone any good tipe?
many thanks.