<?xml version="1.0" encoding="utf-8" ?>

<rss version="2.0">
  <channel>
    <docs>This is an RSS file.  It is intended to be read by a software program called a "feed reader". Search on Google for more details.</docs>
    <title><![CDATA[mshook's Feed]]></title>
    <link>http://www.simpy.com/user/mshook</link>
    <url>http://www.simpy.com/</url>
    <description><![CDATA[mshook's Feed]]></description>
    <image>
      <url>http://www.simpy.com/img/simpy-icon-16x16.png</url>
      <title>Simpy</title>
      <link>http://www.simpy.com/user/mshook</link>
    </image>
    <lastBuildDate></lastBuildDate>
    <ttl>1440</ttl>
    
      
      
      


  
    
  
  
  


      <item>
        <title><![CDATA["how to use the Arduino and an Xport Ethernet module to send and retrieve data to an [PHP] web server"]]></title>
        <link><![CDATA[http://www.glacialwanderer.com/hobbyrobotics/?p=15]]></link>
        <description><![CDATA[<pre>
void httpRequest()
{
  byte theByte;

  xPortSerial.print("GET ");
  xPortSerial.print(PHP_PAGE_LOCATION);

  // value0 = 123 and value1 = 456
  // You should change these to be your sensor values or whatever you want to send
  // (see php code if you want to add more values or change the names value0/value1
  xPortSerial.print("?value0=123&value1=456");
  xPortSerial.print(" HTTP/1.1n");
  xPortSerial.print(WEB_HOST);

  while(!xPortSerial.available()) {} // Just loop until available
  theByte = xPortSerial.read();
  if (theByte != 0)
    Serial.println("Passed.");
  else
    Serial.println("Failed.");
}
</pre>
          <img src="http://www.simpy.com/t/fir.gif"/>
<!--
	  <br/>
          <a href="http://www.pheedo.com/click.phdo?x=0b8a1e9c81c14341a5689c3f903dd631&u=http://www.glacialwanderer.com/hobbyrobotics/?p=15"><img
             src="http://www.pheedo.com/img.phdo?x=0b8a1e9c81c14341a5689c3f903dd631&u=http://www.glacialwanderer.com/hobbyrobotics/?p=15" border="0"/></a>
          <p/>
-->
          Tagged by <a href="http://www.simpy.com/user/mshook">mshook</a> under 
         
<a href="http://www.simpy.com/user/mshook/tag/%22arduino%22">arduino</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22ethernet%22">ethernet</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22server%22">server</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22client%22">client</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22avr%22">avr</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22howto%22">howto</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22code%22">code</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22php%22">php</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22c%22">c</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22sheild%22">sheild</a>,


]]>
</description>
        
        <category><![CDATA[arduino]]></category>
        
        <category><![CDATA[ethernet]]></category>
        
        <category><![CDATA[server]]></category>
        
        <category><![CDATA[client]]></category>
        
        <category><![CDATA[avr]]></category>
        
        <category><![CDATA[howto]]></category>
        
        <category><![CDATA[code]]></category>
        
        <category><![CDATA[php]]></category>
        
        <category><![CDATA[c]]></category>
        
        <category><![CDATA[sheild]]></category>
        
        <author><![CDATA[mshook]]></author>
        <pubDate>Thu, 02 Jul 2009 05:44:00 -0400</pubDate>
      </item>
    
  </channel>
</rss>
