Forum Moderators: coopster
a) if u mean half the colums in table just echo/print/whatever them (either by name or by numeric index)
for exmample : echo $row['id'] or echo $row[0] are the same
b) if u mean half the text in a field, uset strlen to count characters and just echo/print the 1/2 of them
If you mean anything else please update the post
Could there be a simple function I can use without counting them?
Habtom
$query = "SELECT SUBSTRING(content,1,100) FROM container";