<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.2.2" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:atom="http://freecodesnippet.com/comments/feed/atom/" 
	>
<channel>
	<title>Comments for freecodesnippet.com</title>
	<atom:link href="http://freecodesnippet.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://freecodesnippet.com</link>
	<description>A blog all about programming!</description>
	<pubDate>Mon, 18 Aug 2008 10:38:03 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.2.2</generator>

	<item>
		<title>Comment on Storing PHP session to mysql database by nonnus</title>
		<link>http://freecodesnippet.com/articles/php/storing-php-session-to-mysql-database/#comment-328</link>
		<author>nonnus</author>
		<guid>http://freecodesnippet.com/articles/php/storing-php-session-to-mysql-database/#comment-328</guid>
		<description>Many thanks for that! It's really important to keep session data stored for more security. I just have one question:
- How do I define the time limit for the session?</description>
		<content:encoded><![CDATA[<p>Many thanks for that! It&#8217;s really important to keep session data stored for more security. I just have one question:<br />
- How do I define the time limit for the session?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Preventing spam on your website without using captcha by N@te</title>
		<link>http://freecodesnippet.com/articles/security/preventing-spam-on-your-website-without-using-captcha/#comment-327</link>
		<author>N@te</author>
		<guid>http://freecodesnippet.com/articles/security/preventing-spam-on-your-website-without-using-captcha/#comment-327</guid>
		<description>Thanks a lot. That worked great.
Bots can't select options on your form so if you already have an area where the person is supposed to choose something, then you can Exit from processing the form in your Action Script. Great stuff.</description>
		<content:encoded><![CDATA[<p>Thanks a lot. That worked great.<br />
Bots can&#8217;t select options on your form so if you already have an area where the person is supposed to choose something, then you can Exit from processing the form in your Action Script. Great stuff.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Preventing spam on your website without using captcha by N@te</title>
		<link>http://freecodesnippet.com/articles/security/preventing-spam-on-your-website-without-using-captcha/#comment-326</link>
		<author>N@te</author>
		<guid>http://freecodesnippet.com/articles/security/preventing-spam-on-your-website-without-using-captcha/#comment-326</guid>
		<description>Thank you so much. That worked great.

Bots can't select options on your form so if you already have an area where the person is supposed to choose something, then you can Exit from processing the form in your Action Script. Great stuff. http://www.prepaidlegalplans.ws</description>
		<content:encoded><![CDATA[<p>Thank you so much. That worked great.</p>
<p>Bots can&#8217;t select options on your form so if you already have an area where the person is supposed to choose something, then you can Exit from processing the form in your Action Script. Great stuff. <a href="http://www.prepaidlegalplans.ws" rel="nofollow">http://www.prepaidlegalplans.ws</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Storing PHP session to mysql database by akishay</title>
		<link>http://freecodesnippet.com/articles/php/storing-php-session-to-mysql-database/#comment-324</link>
		<author>akishay</author>
		<guid>http://freecodesnippet.com/articles/php/storing-php-session-to-mysql-database/#comment-324</guid>
		<description>mmmmmmmmm</description>
		<content:encoded><![CDATA[<p>mmmmmmmmm</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Storing PHP session to mysql database by cpagecoder</title>
		<link>http://freecodesnippet.com/articles/php/storing-php-session-to-mysql-database/#comment-323</link>
		<author>cpagecoder</author>
		<guid>http://freecodesnippet.com/articles/php/storing-php-session-to-mysql-database/#comment-323</guid>
		<description>Correct and tested revision:


CREATE TABLE `sessions` (
  `session_id` varchar(255),
  `session_access` datetime NOT NULL,
  `session_data` text,
  PRIMARY KEY (`session_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8</description>
		<content:encoded><![CDATA[<p>Correct and tested revision:</p>
<p>CREATE TABLE `sessions` (<br />
  `session_id` varchar(255),<br />
  `session_access` datetime NOT NULL,<br />
  `session_data` text,<br />
  PRIMARY KEY (`session_id`)<br />
) ENGINE=InnoDB DEFAULT CHARSET=utf8</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Storing PHP session to mysql database by cpagecoder</title>
		<link>http://freecodesnippet.com/articles/php/storing-php-session-to-mysql-database/#comment-322</link>
		<author>cpagecoder</author>
		<guid>http://freecodesnippet.com/articles/php/storing-php-session-to-mysql-database/#comment-322</guid>
		<description>Cancel that... working on it.</description>
		<content:encoded><![CDATA[<p>Cancel that&#8230; working on it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Storing PHP session to mysql database by cpagecoder</title>
		<link>http://freecodesnippet.com/articles/php/storing-php-session-to-mysql-database/#comment-321</link>
		<author>cpagecoder</author>
		<guid>http://freecodesnippet.com/articles/php/storing-php-session-to-mysql-database/#comment-321</guid>
		<description>I picked this apart as the table to create:

CREATE TABLE `sessions` (
  `id` bigint(20) unsigned NOT NULL auto_increment,
  `session_access` datetime NOT NULL,
  `session_data` text,
  PRIMARY KEY  (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8</description>
		<content:encoded><![CDATA[<p>I picked this apart as the table to create:</p>
<p>CREATE TABLE `sessions` (<br />
  `id` bigint(20) unsigned NOT NULL auto_increment,<br />
  `session_access` datetime NOT NULL,<br />
  `session_data` text,<br />
  PRIMARY KEY  (`id`)<br />
) ENGINE=InnoDB DEFAULT CHARSET=utf8</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Storing PHP session to mysql database by cricket</title>
		<link>http://freecodesnippet.com/articles/php/storing-php-session-to-mysql-database/#comment-320</link>
		<author>cricket</author>
		<guid>http://freecodesnippet.com/articles/php/storing-php-session-to-mysql-database/#comment-320</guid>
		<description>What is the structure of the session table?</description>
		<content:encoded><![CDATA[<p>What is the structure of the session table?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Storing PHP session to mysql database by BobbyB98</title>
		<link>http://freecodesnippet.com/articles/php/storing-php-session-to-mysql-database/#comment-319</link>
		<author>BobbyB98</author>
		<guid>http://freecodesnippet.com/articles/php/storing-php-session-to-mysql-database/#comment-319</guid>
		<description>You don't show what the code is to create the actual database.  That's a really important part of the process isn't it?</description>
		<content:encoded><![CDATA[<p>You don&#8217;t show what the code is to create the actual database.  That&#8217;s a really important part of the process isn&#8217;t it?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Storing PHP session to mysql database by Derek</title>
		<link>http://freecodesnippet.com/articles/php/storing-php-session-to-mysql-database/#comment-317</link>
		<author>Derek</author>
		<guid>http://freecodesnippet.com/articles/php/storing-php-session-to-mysql-database/#comment-317</guid>
		<description>What tables do I need to create in the database to store the session data? Or am I just tired and missing something really obvious here?</description>
		<content:encoded><![CDATA[<p>What tables do I need to create in the database to store the session data? Or am I just tired and missing something really obvious here?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.272 seconds -->
<!-- Cached page served by WP-Cache -->
