empty variable if/then
- From: "Mikey P" <phatnugs420@xxxxxxxxxxx>
- Date: 28 Feb 2006 08:26:48 -0800
Hi there, i'm trying to figure out if there is an empty variable in a
search to return an alternative result...
like:
$query = mysql_query("SELECT * FROM db WHERE city='$city2' AND
state='$state2' ORDER BY title");
while($row = mysql_fetch_assoc($query)){
if (empty($url)) {
echo($row['title'] . '<br>');
} else {
echo
echo('<b><a href="' . $row['url'] . '>' . $row['title'] . '</a></b>');
}
}
from what it looks like it seems to be searching and saying if there is
any result that is empty in $url return this result. I guess i need to
know how to say.. if there is an empty $url on this row return this
result if there isn't then return the other. :) hope that makes some
sort of sense... Sorry i'm still fairly new at this.
.
- Follow-Ups:
- Re: empty variable if/then
- From: Jerry Stuckle
- Re: empty variable if/then
- From: clercmedia
- Re: empty variable if/then
- Prev by Date: Re: financial function
- Next by Date: Paradox and PHP 5.1.2
- Previous by thread: Access Active Directory (of WINDOWS SERVER 2003) via LDAP
- Next by thread: Re: empty variable if/then
- Index(es):
Relevant Pages
|