[PHP-DEV] Bug #785: Initalisation of variables with long strings From: mb <email protected>
Date: 09/25/98

From: mb <email protected>
Operating system: linux
PHP version: 3.0.4
PHP Bug Type: Feature/Change Request
Bug 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!

--
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>