<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.2" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>Flash PHP Mysql &#124; Extension Support &#124;Peak Studios &#187; Recent Topics</title>
		<link>http://209.61.142.197/forum/</link>
		<description>Flash PHP Mysql Extension Support forum.</description>
		<language>en-US</language>
		<pubDate>Fri, 18 May 2012 18:51:46 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.2</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://209.61.142.197/forum/search.php</link>
		</textInput>
		<atom:link href="http://209.61.142.197/forum/rss/topics" rel="self" type="application/rss+xml" />

		<item>
			<title>RMSinc on "How to makeyour product work with MyISAM or InnoDB tables?"</title>
			<link>http://209.61.142.197/forum/topic/does-your-product-work-only-with-myisam-or-can-it-work-with-innodb-tables#post-21</link>
			<pubDate>Mon, 03 Jan 2011 13:41:08 +0000</pubDate>
			<dc:creator>RMSinc</dc:creator>
			<guid isPermaLink="false">21@http://209.61.142.197/forum/</guid>
			<description>&#60;p&#62;I converted a table to InnoDB and now the code does not seem to work...
&#60;/p&#62;</description>
		</item>
		<item>
			<title>RMSinc on "Getting this error on a simple insert...  can you take a look..."</title>
			<link>http://209.61.142.197/forum/topic/getting-this-error-on-a-simple-insert-can-you-take-a-look#post-24</link>
			<pubDate>Tue, 11 Jan 2011 17:30:31 +0000</pubDate>
			<dc:creator>RMSinc</dc:creator>
			<guid isPermaLink="false">24@http://209.61.142.197/forum/</guid>
			<description>&#60;p&#62;Error: Error #2101: The String passed to URLVariables.decode() must be a URL-encoded query string containing name/value pairs.&#60;br /&#62;
	at Error$/throwError()&#60;br /&#62;
	at flash.net::URLVariables/decode()&#60;br /&#62;
	at flash.net::URLVariables()&#60;br /&#62;
	at flash.net::URLLoader/onComplete()
&#60;/p&#62;</description>
		</item>
		<item>
			<title>RMSinc on "Prefix used in scripts"</title>
			<link>http://209.61.142.197/forum/topic/prefix-used-in-scripts#post-22</link>
			<pubDate>Wed, 05 Jan 2011 23:14:12 +0000</pubDate>
			<dc:creator>RMSinc</dc:creator>
			<guid isPermaLink="false">22@http://209.61.142.197/forum/</guid>
			<description>&#60;p&#62;When you assign a prefix does it matter when you create other Flash forms with different prefixes? Does it affect the PHP folder originally created when  you have a new form?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>RMSinc on "Validation of Fields"</title>
			<link>http://209.61.142.197/forum/topic/validation-of-fields#post-12</link>
			<pubDate>Tue, 26 Oct 2010 19:52:18 +0000</pubDate>
			<dc:creator>RMSinc</dc:creator>
			<guid isPermaLink="false">12@http://209.61.142.197/forum/</guid>
			<description>&#60;p&#62;I would like to validate fields before inserting into MySql database.  Before using INSERT PHP can I use the SELECT PHP to validate fields within AS3?  I want to be able to check if a User ID is already registered and / or an Email address already in the database.  Would I just compare the flash text entered fields with the What to look for result from the SELECT PHP of the corresponding fields in the MySql database? The User ID would be the same as your Login Example but for a email address I would have to search every record.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>RMSinc on "Gsolo Error for MD5.as"</title>
			<link>http://209.61.142.197/forum/topic/gsolo-error-for-md5as#post-19</link>
			<pubDate>Wed, 29 Dec 2010 12:21:47 +0000</pubDate>
			<dc:creator>RMSinc</dc:creator>
			<guid isPermaLink="false">19@http://209.61.142.197/forum/</guid>
			<description>&#60;p&#62;C:\wamp\www\TLC\com\gsolo\encryption\MD5.as, Line 78	Warning: 1112: Array(x) behaves the same as new Array(x).  To cast a value to type Array use the expression x as Array instead of Array(x).&#60;/p&#62;
&#60;p&#62;Is there a new version of MD5.as for CS5 Flash?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>RMSinc on "Tutorial example implementation for Register / Login"</title>
			<link>http://209.61.142.197/forum/topic/tutorial-example-implementation-for-register-login#post-5</link>
			<pubDate>Tue, 19 Oct 2010 19:19:03 +0000</pubDate>
			<dc:creator>RMSinc</dc:creator>
			<guid isPermaLink="false">5@http://209.61.142.197/forum/</guid>
			<description>&#60;p&#62;Here is the code I am using... each time I create a test swf... I get Registration Failed error... The only change I made was in the DB_connect Php for connecting to my DB and table.&#60;/p&#62;
&#60;p&#62;I get Test and the password is inserted into the database... yet I receive a Registration Failed...&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function userInsert(user, pass) {
	var user_table = &#38;quot;users&#38;quot;;
	//--TableRow and rowValue arrays must be the same length.
	//--Array should be the table row names you wish to insert
	var user_tableRow:Array = new Array();&#38;lt;
	user_tableRow[0] = &#38;quot;Username&#38;quot;;
	user_tableRow[1] = &#38;quot;Password&#38;quot;;
	//--Array should be the table row values you wish to insert
	var user_rowValue:Array = new Array();
	user_rowValue[0] = user;
	user_rowValue[1] = pass;
	var user_functionStrings:Array = new Array();
	user_functionStrings[0] = &#38;quot;&#38;quot;;
	var user_insert:InsertDB = new InsertDB(user_table, user_tableRow, user_rowValue,
user_returnFunction, user_functionStrings, DB_loc);
}
//--Return function
//you can seperate the values out using vars.the var you want.
//you already know the returned values because you set them with the tableRow array (i.e. vars.message)
function user_returnFunction(vars:URLVariables, functionStrings:Array){
	if(vars[&#38;quot;insertAction&#38;quot;]==&#38;quot;Complete&#38;quot;) {
		statusTxt.text = &#38;quot;Registration Complete&#38;quot;;
		usernameTxt.text = &#38;quot;&#38;quot;;
		passwordTxt.text = &#38;quot;&#38;quot;;
	}else {
		statusTxt.text = &#38;quot;Registration Failed&#38;quot;;
	}
}&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>compix on "How to obtain all the fields in a mysql table as a unique string"</title>
			<link>http://209.61.142.197/forum/topic/how-to-obtain-all-the-fields-in-a-mysql-table-as-a-unique-string#post-3</link>
			<pubDate>Sat, 21 Aug 2010 02:43:30 +0000</pubDate>
			<dc:creator>compix</dc:creator>
			<guid isPermaLink="false">3@http://209.61.142.197/forum/</guid>
			<description>&#60;p&#62;I'm looking the way to make a datagrid searchable fron one reference field or a search while type.&#60;/p&#62;
&#60;p&#62;Any help??&#60;/p&#62;
&#60;p&#62;Thanks
&#60;/p&#62;</description>
		</item>
		<item>
			<title>admin on "Posting rules"</title>
			<link>http://209.61.142.197/forum/topic/posting-rules#post-2</link>
			<pubDate>Wed, 12 May 2010 22:38:27 +0000</pubDate>
			<dc:creator>admin</dc:creator>
			<guid isPermaLink="false">2@http://209.61.142.197/forum/</guid>
			<description>&#60;p&#62;You must have purchased our the &#60;a title=&#34;Flash PHP MySQL&#34; href=&#34;http://209.61.142.197/products/&#34;&#62;Flash PHP MySQL&#60;/a&#62; extension to receive support from this forum.  We may add more &#60;a href=&#34;http://209.61.142.197/forum/forum/forum-rules&#34;&#62;rules&#60;/a&#62; at any time if necessary.&#60;/p&#62;
&#60;ul&#62;
&#60;li&#62;No unrelated content will be allowed.&#60;/li&#62;
&#60;li&#62;Don't upload files of you code here send your files directly to &#60;a href=&#34;mailto:support@209.61.142.197&#34;&#62;support&#60;/a&#62;.&#60;/li&#62;
&#60;li&#62;For your privacy don't post your DB_loc  or db_config location, user or password when you are pasting code into your post.&#60;/li&#62;
&#60;/ul&#62;</description>
		</item>

	</channel>
</rss>

