From:             [EMAIL PROTECTED]
Operating system: Windows 2000
PHP version:      4.1.1
PHP Bug Type:     Output Control
Bug description:  unterminated string constant

<?php
require("../code/dbconnect.php");
$query = "select swlicid,swdes,swlicnum from softwarelic order by swdes";

$result=mysql_query($query);

        while($row=mysql_fetch_array($result))
        {
                        $swlicnum = $row["swlicnum"];
                        $swdes = $row["swdes"];
                        $swlicid = $row["swlicid"];

$query2 = "select count(*) from software where swdes = '".$swdes."'";
                $result2=mysql_query($query2);

                $liccount = mysql_result($result2, 0, 0);

if($swlicnum!=$liccount)
        {$table_block .= "<tr><td><span class='block' STYLE='cursor:hand'><p
onclick=swliccpulist(\"$swlicid\")>$swdes</p></span></td><td>$swlicnum</td><td>$liccount</td></tr>";

        }
        else
        {
$table_block .= "<tr><td><span class='block' STYLE='cursor:hand'><p
onclick=swliccpulist(\"$swlicid\")>$swdes</p></span></td><td>$swlicnum</td><td>$liccount</td></tr>";

                        }



        }






        mysql_close($link);
        ?>
///////////////////////////////////////

When generating the table if swdes = WINDOWS 2000 
I get a unterminiated string constant

If I change the field to swdes = WINDOWS aaaa 
it works fine



-- 
Edit bug report at http://bugs.php.net/?id=15435&edit=1
-- 
Fixed in CVS:        http://bugs.php.net/fix.php?id=15435&r=fixedcvs
Fixed in release:    http://bugs.php.net/fix.php?id=15435&r=alreadyfixed
Need backtrace:      http://bugs.php.net/fix.php?id=15435&r=needtrace
Try newer version:   http://bugs.php.net/fix.php?id=15435&r=oldversion
Not developer issue: http://bugs.php.net/fix.php?id=15435&r=support
Expected behavior:   http://bugs.php.net/fix.php?id=15435&r=notwrong
Not enough info:     http://bugs.php.net/fix.php?id=15435&r=notenoughinfo


-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to