hello. by using while loop in php i want to print a line imege after eech vale but not after last value.please help me in this problem.
Thanks.
You'd do something like
$i=1; $total=mysql_num_rows($query); while (...) { //content if ($i != ($total - 1)) { //print line } $i++; }
thanks so much for this kind answer.