Only got postzon data for inland addresses.
Interesting problem - I've just had a google, and can't seem to find any mention of my this problem, so if someone could test this on their PHP that would be grand:
If I make a plain file, and just state that:
$sql = "SELECT * FROM memberpostcodes WHERE postcode REGEXP '$input_pcode[0-9]' LIMIT $start,10";
I get a problem - the page won't run, just a white page is returned. PHP borks.
If I state instead that:
$sql = "SELECT * FROM memberpostcodes WHERE postcode REGEXP '$input_pcode' LIMIT $start,10";
The script runs fine.
It seems that PHP doesnt like the square brackets being in the string for some reason.
Is this normal?