FUDforum
Fast Uncompromising Discussions. FUDforum will get your users talking.

Home » Imported messages » comp.lang.php » isset not working with select
Show: Today's Messages :: Polls :: Message Navigator
Return to the default flat view Create a new topic Submit Reply
Re: isset not working with select [message #181363 is a reply to message #181342] Mon, 13 May 2013 19:54 Go to previous messageGo to previous message
Denis McMahon is currently offline  Denis McMahon
Messages: 634
Registered: September 2010
Karma:
Senior Member
On Mon, 13 May 2013 07:01:46 -0400, richard wrote:

> What to use to do that?

Programming skills and logic.

Perhaps you could check that the returned elements contain some viable
data after checking if they're set, and if they don't contain such
expected viable data, then you could output something else?

Given:

$cov = mysql_fetch_row($result);

Then:

if ( isset( $cov[0], $cov[1] ) && is_string( $cov[0] ) && is_string( $cov
[1] ) && strlen( $cov[0] ) > 4 && strlen( $cov[1] ) > 4 ) {

// here you use $cov[0] and $cov[1] in the output

} else {

// here you have an alternative output

}

Now please note carefully:

The order of multiple tests in an if statement as shown above can be
critical to prevent errors. Don't change it around!

--
Denis McMahon, denismfmcmahon(at)gmail(dot)com
[Message index]
 
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Previous Topic: mkdir no such file or directory
Next Topic: makes searching and booking applications airfares
Goto Forum:
  

-=] Back to Top [=-
[ Syndicate this forum (XML) ] [ RSS ]

Current Time: Thu Nov 28 04:39:45 GMT 2024

Total time taken to generate the page: 0.03674 seconds