dongyun6003 2016-01-30 14:33
浏览 41
已采纳

PHP脚本打印“错误”

I am making panels which fills up green "row" from online @ database. Here is css im using to draw everything, does not cause any errors.

<style>
.one {
    width: 1px;
    height: 12px;
    display:block;
    float:left;
    background-color: green;
}
.three {
    width: 3px;
    height: 12px;
    display:block;
    float:left;
    background-color: green;
}
.five {
    width: 5px;
    height: 12px;
    display:block;
    float:left;
    background-color: green;
}
.ten {
    width: 10px;
    height: 12px;
    display:block;
    float:left;
    background-color: green;
.thirty {
    width: 30px;
    height: 12px;
    display:block;
    float:left;
    background-color: green;
}
.fifty {
    width: 30px;
    height: 12px;
    display:block;
    float:left;
    background-color: green;
}
</style>

And there's PHP code which connects to sql.. checks players and draws a css.

<?php
define('mySQL_hostname', 'IP');  //
define('mySQL_database', 'DB');  //
define('mySQL_username', 'US');  //
define('mySQL_password', 'PW');  //
//connects to mysql
$db_link = mysql_connect( mySQL_hostname, mySQL_username, mySQL_password )
or print( 'SQL_CE' );
//connects to Db
$db_select = mysql_select_db( mySQL_database, $db_link )
or print("SQL_DB");
//selects table
$chars= mysql_query("SELECT `online` FROM `users` where `online`=1");
$rows = mysql_num_rows($chars);
// $rows = counted players... which prints out number.

  if ($rows <= 1) {
    print '<span class="one"></span>';
  }
  else if ($rows >= 50) {
    print '<span class="three"></span>'; 
  }
  else if ($rows >= 150) {
    print '<span class="ten"></span>';
    }
  else if ($rows >= 300) {
    print '<span class="ten"></span>';
    print '<span class="ten"></span>';
    }
  else if ($rows >= 500) {
    print '<span class="thirty"></span>';
    print '<span class="one"></span>';
    }
  else if ($rows >= 700) {
    print '<span class="ten"></span>';
    print '<span class="thirty"></span>';
    print '<span class="three"></span>';
  }
  else if ($rows >= 900) {
    print '<span class="ten"></span>';
    print '<span class="five"></span>';
    print '<span class="thirty"></span>';
    }
  else if ($rows >= 1000) {
    print '<span class="thirty"></span>';
    print '<span class="thirty"></span>';
    print '<span class="three"></span>';
    }
  else if ($rows >= 1200) {
    print '<span class="fifty"></span>';
    print '<span class="ten"></span>';
    print '<span class="ten"></span>';
    print '<span class="five"></span>';
    }
  else if ($rows >= 1400) {
    print '<span class="fifty"></span>';
    print '<span class="thirty"></span>';
    print '<span class="five"></span>';
    }
  else if ($rows >= 1600) {
    print '<span class="fifty"></span>';
    print '<span class="fifty"></span>';
    }
  else if ($rows >= 1800) {
    print '<span class="fifty"></span>';
    print '<span class="fifty"></span>';
    print '<span class="ten"></span>';
    }
  else if ($rows >= 2000) {
    print '<span class="fifty"></span>';
    print '<span class="fifty"></span>';
    print '<span class="thirty"></span>';
    }
  else if ($rows >= 2200) {
    print '<span class="fifty"></span>';
    print '<span class="fifty"></span>';
    print '<span class="thirty"></span>';
    print '<span class="ten"></span>';
    }
  else if ($rows >= 2500) {
        print '<span class="fifty"></span>';
        print '<span class="fifty"></span>';
        print '<span class="fifty"></span>';
    }
    else {
      echo "Script error"; // this place i got printed out.
}   
?>

So the thing i get is... "script error" from bottom of doc. Did i misspelled something or what?

  • 写回答

1条回答 默认 最新

  • duanmu8911 2016-01-30 15:31
    关注

    With the way the code was originally structured as soon as the variable $rows is mor ethan 1 but less than 50 there was no condition to match that - hence skipping to the error. I think it should be something more like:

    if( $rows <= 1 ) {
        echo '<span class="one"></span>';
    } elseif( $rows > 1 && $rows < 50 ) {
        echo '<span class="one"></span>';
    } elseif( $rows >= 50 && $rows < 150 ) {
        echo '<span class="three"></span>'; 
    } elseif( $rows >= 150 && $rows < 300 ) {
        echo '<span class="ten"></span>';
    } elseif( $rows >= 300 && $rows < 500 ) {
        echo '
        <span class="ten"></span>
        <span class="ten"></span>';
    }  elseif( $rows >= 500 && $rows < 700 ) {
        echo '
        <span class="thirty"></span>
        <span class="one"></span>';
    } elseif( $rows >= 700 && $rows < 900 ) {
        echo '
        <span class="ten"></span>
        <span class="thirty"></span>
        <span class="three"></span>';
    } elseif( $rows >= 900 && $rows < 1000 ) {
        echo '
        <span class="ten"></span>
        <span class="five"></span>
        <span class="thirty"></span>';
    } elseif( $rows >= 1000 && $rows < 1200 ) {
        echo '
        <span class="thirty"></span>
        <span class="thirty"></span>
        <span class="three"></span>';
    } elseif( $rows >= 1200 && $rows < 1400 ) {
        echo '
        <span class="fifty"></span>
        <span class="ten"></span>
        <span class="ten"></span>
        <span class="five"></span>';
    } elseif( $rows >= 1400 && $rows < 1600 ) {
        echo '
        <span class="fifty"></span>
        <span class="thirty"></span>
        <span class="five"></span>';
    } elseif( $rows >= 1600 && $rows < 1800 ) {
        echo '
        <span class="fifty"></span>
        <span class="fifty"></span>';
    } elseif( $rows >= 1800 && $rows < 2000 ) {
        echo '
        <span class="fifty"></span>
        <span class="fifty"></span>
        <span class="ten"></span>';
    } elseif( $rows >= 2000 && $rows < 2200 ) {
        echo '
        <span class="fifty"></span>
        <span class="fifty"></span>
        <span class="thirty"></span>';
    } elseif( $rows >= 2200 && $rows < 2500 ) {
        echo '
        <span class="fifty"></span>
        <span class="fifty"></span>
        <span class="thirty"></span>
        <span class="ten"></span>';
    } elseif( $rows >= 2500) {
        echo '
        <span class="fifty"></span>
        <span class="fifty"></span>
        <span class="fifty"></span>';
    } else {
        echo "Script error";
    }
    

    That said, have you considered the meter tag? It would seem to be ideal for the purpose and requires much less markup and all calculations are done internally?

    ie:

    <meter min='0' max='2500' value='{$rows}'>{$rows}</meter>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 解决一个加好友限制问题 或者有好的方案
  • ¥15 关于#java#的问题,请各位专家解答!
  • ¥15 急matlab编程仿真二阶震荡系统
  • ¥20 TEC-9的数据通路实验
  • ¥15 ue5 .3之前好好的现在只要是激活关卡就会崩溃
  • ¥50 MATLAB实现圆柱体容器内球形颗粒堆积
  • ¥15 python如何将动态的多个子列表,拼接后进行集合的交集
  • ¥20 vitis-ai量化基于pytorch框架下的yolov5模型
  • ¥15 如何实现H5在QQ平台上的二次分享卡片效果?
  • ¥30 求解达问题(有红包)