php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #15435 unterminated string constant
Submitted: 2002-02-07 15:53 UTC Modified: 2002-02-07 21:55 UTC
From: wborter at aem-east dot com Assigned:
Status: Not a bug Package: Output Control
PHP Version: 4.1.1 OS: Windows 2000
Private report: No CVE-ID: None
 [2002-02-07 15:53 UTC] wborter at aem-east dot com
<?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



Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2002-02-07 21:55 UTC] yohgaki@php.net
The bug system is not the appropriate forum for asking support
questions. For a list of a range of more appropriate places to ask
for help using PHP, please visit http://www.php.net/support.php
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Wed Apr 24 06:01:29 2024 UTC