This command is used to display all our subscribers with a name begining with c, C. Everyone is being displayed but the names are totally unaligned.
set row [ns_db select $db "select fname, lname, subscriber_id from kbeg where fname~*'^c'"]
while {[ns_db getrow $db $row]} {
ns_puts "<a href='EditChar2.adp?characters=[ns_set value $row 2]'>[ns_set value $row 0] [ns_set value $row 1]</a> <br>"
}
Any suggestions?