On Friday 22 Aug 2003 10:26 pm, John Taylor-Johnston wrote:
> This is my favourite question. Can I clean up my 'if then' statements a
> tad? Must be a cleaner way?
> Still learning, still having fun :)
> Thanks,
> John
>
> $news = mysql_query($sql) or die(print
> "document.write(\"".mysql_error().
Yes, but must be a better way to setup my if.then's ?
John
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Absolutely, the best way *tongue in cheek* is to format as follows:
$news = mysql_query($sql) or die( print "document.write(\"".mysql_error()."\");");
$found = 0;
while( $mydata = mysql_fetch_object( $news ) )
{
if( $getaddr == $mydata->IPAddress )
{
$found = 1;
}
}
if( $foun
This is my favourite question. Can I clean up my 'if then' statements a tad?
Must be a cleaner way?
Still learning, still having fun :)
Thanks,
John
$news = mysql_query($sql) or die(print "document.write(\"".mysql_error()."\");");
$found = 0;
while ($mydata = mysql_fetch_object($news))
{
if
4 matches
Mail list logo