<?xml version="1.0" encoding="utf-8"?>
<!-- generator="FeedCreator 1.7.2-ppt DokuWiki" -->
<?xml-stylesheet href="http://wiki.greenquery.com/lib/exe/css.php?s=feed" type="text/css"?>
<rdf:RDF
    xmlns="http://purl.org/rss/1.0/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
    xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel rdf:about="http://wiki.greenquery.com/feed.php">
        <title>wiki.greenquery.com</title>
        <description></description>
        <link>http://wiki.greenquery.com/</link>
        <image rdf:resource="http://wiki.greenquery.com/lib/images/favicon.ico" />
       <dc:date>2010-09-06T19:37:36+00:00</dc:date>
        <items>
            <rdf:Seq>
                <rdf:li rdf:resource="http://wiki.greenquery.com/doku.php?id=building_a_webshop&amp;rev=1192510008"/>
                <rdf:li rdf:resource="http://wiki.greenquery.com/doku.php?id=php_common_functions&amp;rev=1189074799"/>
                <rdf:li rdf:resource="http://wiki.greenquery.com/doku.php?id=php_mysql&amp;rev=1189366252"/>
                <rdf:li rdf:resource="http://wiki.greenquery.com/doku.php?id=start&amp;rev=1192255993"/>
                <rdf:li rdf:resource="http://wiki.greenquery.com/doku.php?id=understanding_php_classes&amp;rev=1225109628"/>
            </rdf:Seq>
        </items>
    </channel>
    <image rdf:about="http://wiki.greenquery.com/lib/images/favicon.ico">
        <title>wiki.greenquery.com</title>
        <link>http://wiki.greenquery.com/</link>
        <url>http://wiki.greenquery.com/lib/images/favicon.ico</url>
    </image>
    <item rdf:about="http://wiki.greenquery.com/doku.php?id=building_a_webshop&amp;rev=1192510008">
        <dc:format>text/html</dc:format>
        <dc:date>2007-10-16T04:46:48+00:00</dc:date>
        <title>building_a_webshop</title>
        <link>http://wiki.greenquery.com/doku.php?id=building_a_webshop&amp;rev=1192510008</link>
        <description>In this tutorial, we are going to build a webshop, using PHP &amp; MYSQL.
 
 Things that will be in this webshop


	*  Support for product categories
	*  Support for product images
	*  Support for customer registration
	*  Support for invoice
	*  Support for email</description>
    </item>
    <item rdf:about="http://wiki.greenquery.com/doku.php?id=php_common_functions&amp;rev=1189074799">
        <dc:format>text/html</dc:format>
        <dc:date>2007-09-06T10:33:19+00:00</dc:date>
        <title>php_common_functions</title>
        <link>http://wiki.greenquery.com/doku.php?id=php_common_functions&amp;rev=1189074799</link>
        <description>We are going to go throw some of the most used functions and code snippets.


 Using mail to send a email from our PHP code is easy. 
 A simple snippet
 


  &lt;?php
     
     $to_email = &quot;johndoe@hotmail.com&quot;;
     $subject  = &quot;Hello from my website&quot;;
     $content  = &quot;Hi John,\nNow i can send emails from my website\n\nBest regards\nJane Doe&quot;;
       
     //Send the mail
     mail($to_email,$subject,$content);
  ?&gt;</description>
    </item>
    <item rdf:about="http://wiki.greenquery.com/doku.php?id=php_mysql&amp;rev=1189366252">
        <dc:format>text/html</dc:format>
        <dc:date>2007-09-09T19:30:52+00:00</dc:date>
        <title>php_mysql</title>
        <link>http://wiki.greenquery.com/doku.php?id=php_mysql&amp;rev=1189366252</link>
        <description>PHP &amp; MYSQL

 PHP has a fast and easy2use extenstion to MYSQL.
 We will try to demonstrate some of the ways of working with PHP &amp; MYSQL.

Creating a common connection

 Creating a connection to the MYSQL database
 A common connection is mostly used, since you then dont need to specify witch connection mysql commands shold use.</description>
    </item>
    <item rdf:about="http://wiki.greenquery.com/doku.php?id=start&amp;rev=1192255993">
        <dc:format>text/html</dc:format>
        <dc:date>2007-10-13T06:13:13+00:00</dc:date>
        <title>start</title>
        <link>http://wiki.greenquery.com/doku.php?id=start&amp;rev=1192255993</link>
        <description>GreenQuery wiki web

 You can register your self as a user here. Register now

News

 Hi i updated Second sight on JAVA, and it can now be read by all users (not guests).
 I'm currently working on the webshop, when ever I have the time.


Most of my time is going on the GreenInstall project. It's getting there, and it worn't be long before we can reveal a alfa/beta version.</description>
    </item>
    <item rdf:about="http://wiki.greenquery.com/doku.php?id=understanding_php_classes&amp;rev=1225109628">
        <dc:format>text/html</dc:format>
        <dc:date>2008-10-27T12:13:48+00:00</dc:date>
        <title>understanding_php_classes</title>
        <link>http://wiki.greenquery.com/doku.php?id=understanding_php_classes&amp;rev=1225109628</link>
        <description>Creating a php class is a good way to structor your data or functions.
 When if you work with a MYSQL database, then it would be a good idea, to make a PHP class to handle all communication with the database.
 


Creating a basic PHP class 


&lt;?php
  /* Create class names Utilities */
  class Utilities {
     /* create function to print a new line */
     function println(){
        print &quot;&lt;br/&gt;\n&quot;;
     }
     /* create function to print data with a newline */
     function println($data){
    …</description>
    </item>
</rdf:RDF>
