|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull Requests |
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Oct 29 05:00:01 2025 UTC |
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