hello one and all,
as you may have guessed I am trying to lean php from ASP
what I need to do is
grab 10 cols from MySQL
select col0, col1, col2, col3, col4, col5 ... from table where ID = 'blah';
now some of these columns will be Null they run in sequence so if 5 is null it ends there (the rest will also be null)
so the question is how can I page up to the null field or number 10 in the event they are all populated ?
if isNull(col1) // Bit of ASP there sorry don't know the alternative
// Dont print the next link
}else{
// Print it
}