|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[1999-11-05 03:56 UTC] thies at cvs dot php dot net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Fri Nov 07 14:00:02 2025 UTC |
If I try this code: $sql = "SELECT starttime FROM timeunit WHERE timeunitid = 100514"; $sbr = sybase_query($sql, $sbc); if($sbr > 1) { for($i = 0; $i < sybase_num_rows($sbr); $i++) { $row = sybase_fetch_row($sbr); for($j = 0; $j < sizeof($row); $j++) { $line = chop($row[$j]); echo "\"<B>$line</B>\"<BR>\n"; echo "\"$line\"<BR>\n"; } } } I get this result: "<B>Sep 2 1998 5:00:00:000PM</B>"<BR> "Sep 2 1998 5:00:00:000PM<BR> It doesn't print the last \" in the last line. Why?