store substring variables
704072Jun 9 2009 — edited Jun 9 2009if i were to take a string 0,1,0,1,0 and use the substr function to break it up. For example:
substr('0,1,0,1,0', 1, 1) would return 0
substr('0,1,0,1,0', 3, 1) would return 1
substr('0,1,0,1,0', 5, 1) would return 0
so on and so forth, how would I store the returned value would I use the Into value?