• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Apps Scanner linked to my website?

kaufy1987

Lurker
hello everyone

i was wondering if you could help me out with a certain app function. my ideas are more complex than my skills lend me to be able to do. id like to know if you can give me some direction on the bar code scanner. when someone scans a product (upc code) i'd like the app to launch my website and show the person the price of the product they just scanned. basically they would be doing a simple search for that upc code on my website. simple but probably very complicated to program? i appreciate any help you can give me. thank you!:)
 
Thank you for replying! Well shopsavy is a bunch of businesses in one database (i think). I would like to program the scanner to go directly to my site for the UPC search.
 
So you want the app to scan the picture and read the UPC... from there it will open a web browser with something like this from google:

inurl:YOURSITEHERE "UPC-############" ?

That might .... help?
:vroam:
 
Also try passing parameters through your site. I built something similar for my senior design project and used index.php?UPC=######

And then the UPC parameter I passed through the address was used to filter a table on the website. You can launch the barcode scanning app with simple code and then it returns the UPC to your app, which can then call an intent of a URL with the parameter passed to it.

Passing variables in PHP 5 in the URL
 
Back
Top Bottom