RN-XV WiFly Module get data

Hello,

I really like the WiFly module! But still a few questions:

  • is it possible to pass multiple VARs in the send string? For example: ```
    GET /ob.php?VAR1=8&VAR2=4
When possible i can directly store this information into a MySQL database:

if($_GET[‘obvar’])
mysql_query(“UPDATE tbl SET column = '” . $_GET[‘VAR1’] .“’ WHERE id = 1”);


[http://dlnmh9ip6v2uc.cloudfront.net/dat ... -RN-UM.pdf](http://dlnmh9ip6v2uc.cloudfront.net/datasheets/Wireless/WiFi/WiFly-RN-UM.pdf)

I did get the sample on page 60 to work:

set dns name www.rovingnetworks.com //set up the URL of the server
set ip host 0 //instructs RN-370 to use DNS address of host server
set ip remote 80 //standard web server port
set ip proto 18 //enable HTTP and TCP protocols
set com remote GET$/server.php?value= //set up the string
set sys auto 10 //auto connect every 10 seconds
set option format 7 //send the header and sampled binary data converted to ASCII
set q sensor 0xFF //sets sensor mask to sample all channels
save //save the configurations in config file
reboot //reboot so that the settings take effect


But the sample on page 56 not, then i get 404 errors and bad request errors? What could be the problem? The problem looks smilair to this topic: [viewtopic.php?f=13&t=22274&p=140178&hil ... ta#p140178](http://forum.sparkfun.com/viewtopic.php?f=13&t=22274&p=140178&hilit=wifly+get+data#p140178)

But i don't quite understand.... maybe sombody can point me in the right direction?

You can GET or post multiple vars. Why are you trying to use rovingnetworks to test? You should create your own webserver so you can upload your own php code. I use Wifly to connect to a webserver, send vars with GET, the webserver then easily connects to mysql, and writes or reads whatever you want. Y