print_r($row)
显示出来是空的!

解决方案 »

  1.   

    <select name="r_c_id_JumpList" id="r_c_id_JumpList" onchange="if(this.options[this.selectedIndex].value!='')location='ecard.php?r_c_id='+this.options[this.selectedIndex].value+'&is_recyclebin=0';">
    <option value="0">跳转到类别...</option>EOT;
    $result = mysql_query("SELECT * FROM ec_class order by c_id");
    $row = mysql_fetch_array($result);  do { 
    echo "<option value=";
    echo $row['c_id'];
    echo ">╋";
    echo $row['c_name'];
    echo "</option>";
    }
    while($row = mysql_fetch_array($result));
    print <<<EOT </select>我这样改就是正确的!,大家知道是什么原因吗?
    EOT;
    ......
    print <<<EOT我也不知道上面是什么意思?