mysql_select_db($database_PHpMysql, $PHpMysql);
$query_rsUpdateSoft = "SELECT * FROM soft "
." WHERE soft.tagno ='".$_POST['tagno']."'";
$query_limit_rsUpdateSoft = sprintf("%s LIMIT %d, %d", $query_rsUpdateSoft, $startRow_rsUpdateSoft, $maxRows_rsUpdateSoft);
$rsUpdateSoft = mysql_query($query_limit_rsUpdateSoft, $PHpMysql) or die(mysql_error());
$row_rsUpdateSoft = mysql_fetch_assoc($rsUpdateSoft);
The thing which I think is not working properly is the query itself. $POST gets its value from another page. It finds the 1st record, but when I am trying to move to the next record which also meets the critiria is errors out. It looks like $POST does not keep its value after the first record is found. So what I have been trying to do is make $_POST keep is value through the whole query.
Thanks again guys for taking the time in helping me out.