Category Archives: All The Rest

Reading and parsing text files with PHP

Quite often, the need pops up to read text files, typically these are plain text or CSV (exports from Excel, MS Access or some other source). This guide will show you the pest practice for doing so.

Posted in All The Rest | Tagged , , , , | Leave a comment

Forum is here…

I have recently added a forum to my site. If you have any specific requests for some development (PHP,.NET … anything), project management, search engine optimisation… or just want to talk about something random. I am active on experts-exchange.com and … Continue reading

Posted in All The Rest, General | Tagged | Leave a comment

ColdFusion – replace nl to br

Just a quickie if you need to replace NL (New Line or Carriage Return) in CFMX; <cfset text = replace(text,’#Chr(10)##Chr(13)#’,'<br>’,”All”)> You could also wrap it up in a CFC or a function if it’s going to be widely used.

Posted in All The Rest | Tagged , , | Leave a comment