I have a doubt actually regarding volley in android. I know how to fetch data from sql server database through php code which does not take any data from the android app like
select * from table;
and if I'd like to fetch data from database with php code containing statements like
select * from tablename where field1='something';
I need to send data from android app to php. Can we actually do it using Volley. If so please tell me how to send data to php file from android.