[PHP-DEV] Bug #785 Updated: Initalisation of variables with long strings From: Bug Database (php-dev <email protected>)
Date: 09/25/98

ID: 785
User Update by: mb <email protected>
Old-Status: Open
Status: Closed
Bug Type: Feature/Change Request
Description: Initalisation of variables with long strings

E.g. you have to write a long sql-query-string, I think you have to write something like the following when you do not want to get lines with x00 characters:

$Query = "select Price, Date, Number, Id";
$Query = $Query." from Articles where";
$Query = $Query." Description like 'Bike%'";

It would be nice when you also can write that instead:

$Query = "select Price, Date, Number, Id"
         " from Articles where Description like 'Bike%'";

  - Or is it already possible? -

Matthias

P.S.: PHP is great

Full Bug description available at: http://ca.php.net/bugs.php3?id=785

--
PHP Development Mailing List   http://www.php.net/
To unsubscribe send an empty message to php-dev-unsubscribe <email protected>
For help: php-dev-help <email protected>