I have an generated output.js file from a specific device which contains Array in it:
var OUT=new Array (0x80,0x00,0x40,0x0026,0x0011,0x0014,0x0013,0x0018,0x0017,0x03FD,0x0116)
How can i get access to this array with PHP, so i can easily print specified Array[x] in any location:
print $OUT[4];
With simple JS i was able to do it like:
document.write(OUT[4]);
In case i can also handle that output.js with PHP like a txt file and then splitting and "doing like array thing" but i think there is away to use it right.. ^_^
Any tips or suggestions on that ? :)
Thnx!