When I undertake developing a website I always try to keep 3 key principles in mind;
1. Simplicity
2. Modularity
3. Balance
Follow my basic guide and you’ll become a better developer/designer…
When I undertake developing a website I always try to keep 3 key principles in mind;
1. Simplicity
2. Modularity
3. Balance
Follow my basic guide and you’ll become a better developer/designer…
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.