I've got a problem with my code and the "\r" line return. THe code works perfectly on the unix server "online" but off line on my Windows XP it wont work - as the SQL looks up a value, but it needs to add a "\r" to actually work... eg:
$sql = "SELECT * FROM table WHERE id='$id'";
it works online perfectly... but not offline.... it returns 0 rows... where as when I change it to
$sql = "SELECT * FROM table WHERE id='$id\r'";
it works fine..... is there any setting in XP to do an sql search without looking for extra characters??
thanks for any info...