Don’t you hate it when you spend ages wondering why your code won’t work:
$queryString += $value;
And then realise that in PHP you use “.” to join strings:
$queryString .= $value;
Stupid PHP.
Don’t you hate it when you spend ages wondering why your code won’t work:
$queryString += $value;
And then realise that in PHP you use “.” to join strings:
$queryString .= $value;
Stupid PHP.
The evil PHP already did something similar to me.
It sure is annoying but when the problem is found it’s always fun with the colleagues (at least if they’re cool ^^).