<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-8068282936199430556</id><updated>2011-04-21T17:40:55.436-07:00</updated><title type='text'>Enjoy free codes</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://wantfreecode.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8068282936199430556/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://wantfreecode.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>sabina</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>3</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-8068282936199430556.post-4727827705422602244</id><published>2009-02-03T17:09:00.001-08:00</published><updated>2009-02-03T17:09:30.546-08:00</updated><title type='text'>What is MySQL ?</title><content type='html'>MySQL is a relational database management system. It is a Open Source SQL database provided by MySQL AB. MySQL is very fast, reliable, and easy to use. It also has a very practical set of features developed in very close cooperation with our users. MySQL was originally developed to handle very large databases much faster than existing solutions and has been successfully used in highly demanding production environments for several years. Though under constant development, MySQL today offers a rich and very useful set of functions. The connectivity, speed, and security make MySQL highly suited for accessing databases on the Internet.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8068282936199430556-4727827705422602244?l=wantfreecode.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://wantfreecode.blogspot.com/feeds/4727827705422602244/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://wantfreecode.blogspot.com/2009/02/what-is-mysql.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8068282936199430556/posts/default/4727827705422602244'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8068282936199430556/posts/default/4727827705422602244'/><link rel='alternate' type='text/html' href='http://wantfreecode.blogspot.com/2009/02/what-is-mysql.html' title='What is MySQL ?'/><author><name>sabina</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8068282936199430556.post-898294613072810942</id><published>2009-02-03T17:02:00.000-08:00</published><updated>2009-02-03T17:07:17.995-08:00</updated><title type='text'>how to create table</title><content type='html'>1. CREATE TABLE `tutorial_users` (&lt;br /&gt;   2.&lt;br /&gt;   3. `id` INT( 10 ) NOT NULL AUTO_INCREMENT ,&lt;br /&gt;   4.&lt;br /&gt;   5. `username` VARCHAR( 50 ) NOT NULL ,&lt;br /&gt;   6.&lt;br /&gt;   7. `admin` TINYINT( 1 ) NOT NULL DEFAULT '0',&lt;br /&gt;   8.&lt;br /&gt;   9. PRIMARY KEY ( `id` )&lt;br /&gt;  10.&lt;br /&gt;  11. ) ENGINE = innodb;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8068282936199430556-898294613072810942?l=wantfreecode.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://wantfreecode.blogspot.com/feeds/898294613072810942/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://wantfreecode.blogspot.com/2009/02/how-to-create-table.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8068282936199430556/posts/default/898294613072810942'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8068282936199430556/posts/default/898294613072810942'/><link rel='alternate' type='text/html' href='http://wantfreecode.blogspot.com/2009/02/how-to-create-table.html' title='how to create table'/><author><name>sabina</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8068282936199430556.post-2208537803837255983</id><published>2009-02-03T04:54:00.000-08:00</published><updated>2009-02-03T04:58:20.285-08:00</updated><title type='text'>When using variable variables this is invalid</title><content type='html'>&lt;p class="untext"&gt;&lt;tt&gt;&lt;span&gt;When using variable variables this is  invalid:&lt;br /&gt;$my_variable_{$type}_name = true;&lt;br /&gt;to get around this do something  like:&lt;br /&gt;$n="my_variable_{$type}_name";&lt;br /&gt;${$n} = true;&lt;br /&gt;(or $$n - I tend to  use curly brackets out of habit as it helps t reduce bugs ...)&lt;/span&gt;&lt;/tt&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8068282936199430556-2208537803837255983?l=wantfreecode.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://wantfreecode.blogspot.com/feeds/2208537803837255983/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://wantfreecode.blogspot.com/2009/02/when-using-variable-variables-this-is.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8068282936199430556/posts/default/2208537803837255983'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8068282936199430556/posts/default/2208537803837255983'/><link rel='alternate' type='text/html' href='http://wantfreecode.blogspot.com/2009/02/when-using-variable-variables-this-is.html' title='When using variable variables this is invalid'/><author><name>sabina</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>
