Netduino home hardware projects downloads community

Jump to content


The Netduino forums have been replaced by new forums at community.wildernesslabs.co. This site has been preserved for archival purposes only and the ability to make new accounts or posts has been turned off.

Mohan

Member Since 25 Nov 2010
Offline Last Active Mar 31 2011 09:59 AM
-----

Posts I've Made

In Topic: FEZDuino

04 January 2011 - 02:53 PM

Hi, Yes , This Board is Opensource from GHI electronics But it runs netduino firmware . so we can call it as fezduino ( actual the original name is fez hacker). its not using the USBizi chipset its using AT91SAM7x512

In Topic: Netduino + SQL client (maybe System.Data.SqlClient)??

08 December 2010 - 02:51 PM

Hi , you can use PHP with parameter's on the URL and a simple web URL Request to the web-server will inserts the data in to MySQL or MSSQL you just need to write one php file thats enough for inserting data into any server with simple web request for your reference connecting to mssql with php http://www.webcheats...ql_database.php URL passing serverlog.php file name <html> <head> <title>Server Log</title> </head> <body> <?php $url1= $_GET['url1']; $url2= $_GET['url2']; $url3= $_GET['url3']; mysql_connect("servername","username","password") or die ('I cannot connect to database because : '. mysql_error()); mysql_select_db("yourdatabase"); $query="insert into tablename values('.$url1', '".$url2"', '".$url3"');"; mysql_query($query) or die("ERROR ".mysql_error()); echo "Database Updated"; echo "SUCCESS"; ?> </body> </html> then you can call the webrequest from netduinoPlus using http://servername/se...url2=xx,url3=xx where xx is your dynamic data from ADC or I/O

home    hardware    projects    downloads    community    where to buy    contact Copyright © 2016 Wilderness Labs Inc.  |  Legal   |   CC BY-SA
This webpage is licensed under a Creative Commons Attribution-ShareAlike License.