Hello,
Im trying to visualize db output in the more convenient way to observe,
but in my code below, when i run it, everything is shifted to the left.
email@email.com 111 john 10:16:33 Jun 17, 2012
otheremail@email.com 23 otheruser 10:16:33 Jun 17, 2012
$email=mysql_result($result,$i,"email");
$amount=mysql_result($result,$i,"amount");
$userid=mysql_result($result,$i,"userid");
$date=mysql_result($result,$i,"date");
$remarks=mysql_result($result,$i,"remarks");
echo "<b>$email $amount $userid $date $remarks</b><hr>";
So the question is how to display mysql data in strict
vertical columns without shifting?
should i use printf? or convert it to array?
thank you so much