Date: 09/25/98
- Next message: Dave Walton: "Re: [PHP-DEV] Bug #785: Initalisation of variables with long strings"
- Previous message: Jani Lehtimäki: "Re: [PHP-DEV] few additions?"
- Next in thread: Dave Walton: "Re: [PHP-DEV] Bug #785: Initalisation of variables with long strings"
- Reply: Dave Walton: "Re: [PHP-DEV] Bug #785: Initalisation of variables with long strings"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
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>
- Next message: Dave Walton: "Re: [PHP-DEV] Bug #785: Initalisation of variables with long strings"
- Previous message: Jani Lehtimäki: "Re: [PHP-DEV] few additions?"
- Next in thread: Dave Walton: "Re: [PHP-DEV] Bug #785: Initalisation of variables with long strings"
- Reply: Dave Walton: "Re: [PHP-DEV] Bug #785: Initalisation of variables with long strings"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

