Advertisement
Guest User

try2

a guest
Jan 26th, 2017
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <cffile action="read"
  2. file="\\192.168.1.40\New File Server\01.Team\John\raid test\data\S1006_U003.log"
  3. variable="var">
  4. <cfoutput>
  5. <cfloop index="i" list="#var#" delimiters="#chr(13)#">
  6.     new line<br>
  7. <cfloop index="i2" list="#i#" delimiters="#chr(32)##chr(9)#">
  8.  
  9.  
  10.  
  11. #i2#<br>
  12. </cfloop><br>
  13. </cfloop>
  14. </cfoutput>
  15.  
  16.  
  17. First 4 lines of the file outputted to the web page
  18. new line
  19. 15/01/2017
  20. 22:32:14
  21. 1
  22. 14.975
  23.  
  24. new line
  25. 15/01/2017
  26. 22:33:14
  27. 1
  28. 14.975
  29.  
  30. new line
  31. 15/01/2017
  32. 22:34:14
  33. 1
  34. 15.000
  35.  
  36. new line
  37. 15/01/2017
  38. 22:35:14
  39. 1
  40. 15.000
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement