Below data is in Excel file , i need that value(23,34..etc) should be output when any one select that resp data from drop-down(PHP File)
In excel:
Update Excel file :
------------------------------|------------------
AB | XE
------------------------------|------------------
| b1 | b2 | b3 | X1 | X2 | X3
------------------------------|------------------
| A | 23 | 34 | 45 | 20 | 19 | 80
0.45 - 0.90| B | 20 | 31 | 85 | 23 | 23 | 67
| C | 23 | 32 | 23 | 10 | 12 | 23
| D | 10 | 12 | 23 | 56 | 45 | 23
Above date is in Excel file
Note : 0.45-0.90 is range from 0.45 to 0.90
IN PHP Page I have value in drop down :
1 } 0.45-0.90 ( range ) : thats 0.45,0.55,0.69,..0.90
2 } AB , XE
3 } A,B,C,D
4 } b1,b2,b3,X1,X2,X3
that numbers : 23,34,45,..etc is output, that when any user select above drop-down data from php page , it should take value from excel and print output in browser:
Like : example as below : when any one select :
0.45 - AB - A - b1 : then he will get output in textbox as ***23***
0.45 - AB - A - b2 : then he will get output in textbox as ***34***
0.55 - AB - A - b2 : then he will get output in textbox as ***34***
0.69 - AB - B - b2 : then he will get output in textbox as ***31***
0.69 - XE - B - X2 : then he will get output in textbox as ***23***
0.90 - XE - C - X3 : then he will get output in textbox as ***23***
0.90 - XE - D - X1 : then he will get output in textbox as ***56***
Above is just one box sample...i have many box in excel for other size range.
can any tell me how i can get same in PHP MYSQL Or any other Best Way.
Update with excel link above