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.
It sure is annoying but when the problem is found it’s always fun with the colleagues (at least if they’re cool ^^).