<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/">
	<channel>
		<title><![CDATA[Forums - All Forums]]></title>
		<link>http://714tech.com/forum/</link>
		<description><![CDATA[Forums - http://714tech.com/forum]]></description>
		<pubDate>Tue, 07 Sep 2010 15:32:57 +0000</pubDate>
		<generator>MyBB</generator>
		<item>
			<title><![CDATA[Newegg's Power Supply Calculator]]></title>
			<link>http://714tech.com/forum/thread-7.html</link>
			<pubDate>Thu, 15 Oct 2009 02:33:14 +0000</pubDate>
			<guid isPermaLink="false">http://714tech.com/forum/thread-7.html</guid>
			<description><![CDATA[Try out this new power supply calculator from Newegg.<br />
<br />
<a href="http://educations.newegg.com/tool/psucalc/index.html" target="_blank">LINK</a>]]></description>
			<content:encoded><![CDATA[Try out this new power supply calculator from Newegg.<br />
<br />
<a href="http://educations.newegg.com/tool/psucalc/index.html" target="_blank">LINK</a>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[DISABLE INDEXING SERVICES]]></title>
			<link>http://714tech.com/forum/thread-6.html</link>
			<pubDate>Wed, 17 Jun 2009 16:52:47 +0000</pubDate>
			<guid isPermaLink="false">http://714tech.com/forum/thread-6.html</guid>
			<description><![CDATA[Indexing Services is a small little program that uses large amounts of RAM and can often make a computer endlessly loud and noisy. This system process indexes and updates lists of all the files that are on your computer. It does this so that when you do a search for something on your computer, it will search faster by scanning the index lists. If you don't search your computer often, or even if you do search often, this system service is completely unnecessary. To disable do the following:<br />
<br />
1. Go to Start<br />
2. Click Settings<br />
3. Click Control Panel<br />
4. Double-click Add/Remove Programs<br />
5. Click the Add/Remove Window Components<br />
6. Uncheck the Indexing services<br />
7. Click Next]]></description>
			<content:encoded><![CDATA[Indexing Services is a small little program that uses large amounts of RAM and can often make a computer endlessly loud and noisy. This system process indexes and updates lists of all the files that are on your computer. It does this so that when you do a search for something on your computer, it will search faster by scanning the index lists. If you don't search your computer often, or even if you do search often, this system service is completely unnecessary. To disable do the following:<br />
<br />
1. Go to Start<br />
2. Click Settings<br />
3. Click Control Panel<br />
4. Double-click Add/Remove Programs<br />
5. Click the Add/Remove Window Components<br />
6. Uncheck the Indexing services<br />
7. Click Next]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[SPEEDUP FOLDER BROWSING IN WINDOWS]]></title>
			<link>http://714tech.com/forum/thread-5.html</link>
			<pubDate>Wed, 17 Jun 2009 16:50:57 +0000</pubDate>
			<guid isPermaLink="false">http://714tech.com/forum/thread-5.html</guid>
			<description><![CDATA[SPEEDUP FOLDER BROWSING<br />
<br />
<br />
You may have noticed that everytime you open my computer to browse folders that there is a slight delay. This is because Windows XP automatically searches for network files and printers everytime you open Windows Explorer. To fix this and to increase browsing significantly:<br />
<br />
1. Open My Computer<br />
2. Click on Tools menu<br />
3. Click on Folder Options<br />
4. Click on the View tab.<br />
5. Uncheck the Automatically search for network folders and printers check box<br />
6. Click Apply<br />
7. Click Ok<br />
8. Reboot your computer]]></description>
			<content:encoded><![CDATA[SPEEDUP FOLDER BROWSING<br />
<br />
<br />
You may have noticed that everytime you open my computer to browse folders that there is a slight delay. This is because Windows XP automatically searches for network files and printers everytime you open Windows Explorer. To fix this and to increase browsing significantly:<br />
<br />
1. Open My Computer<br />
2. Click on Tools menu<br />
3. Click on Folder Options<br />
4. Click on the View tab.<br />
5. Uncheck the Automatically search for network folders and printers check box<br />
6. Click Apply<br />
7. Click Ok<br />
8. Reboot your computer]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[MYSQL Insert Record - This Works!]]></title>
			<link>http://714tech.com/forum/thread-4.html</link>
			<pubDate>Sat, 06 Jun 2009 17:19:06 +0000</pubDate>
			<guid isPermaLink="false">http://714tech.com/forum/thread-4.html</guid>
			<description><![CDATA[<a href="http://www.phpeasystep.com/mysql/5.html" target="_blank">http://www.phpeasystep.com/mysql/5.html</a><br />
<br />
<br />
<span style="text-decoration: underline;"><span style="font-weight: bold;">Create MYSQL Table</span></span><br />
<br />
CREATE TABLE `test_mysql` (<br />
`id` int(4) NOT NULL auto_increment,<br />
`name` varchar(65) NOT NULL default '',<br />
`lastname` varchar(65) NOT NULL default '',<br />
`email` varchar(65) NOT NULL default '',<br />
PRIMARY KEY (`id`)<br />
) TYPE=MyISAM AUTO_INCREMENT=0 ;<br />
<br />
<br />
<span style="font-weight: bold;"><span style="text-decoration: underline;">HTML FORM</span></span><br />
<br />
<br />
<br />
&lt;table width="300" border="0" align="center" cellpadding="0" cellspacing="1"&gt;<br />
&lt;tr&gt;<br />
&lt;td&gt;&lt;form name="form1" method="post" action="insert_ac.php"&gt;<br />
&lt;table width="100%" border="0" cellspacing="1" cellpadding="3"&gt;<br />
&lt;tr&gt;<br />
&lt;td colspan="3"&gt;&lt;strong&gt;Insert Data Into mySQL Database &lt;/strong&gt;&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;tr&gt;<br />
&lt;td width="71"&gt;Name&lt;/td&gt;<br />
&lt;td width="6"&gt;:&lt;/td&gt;<br />
&lt;td width="301"&gt;&lt;input name="name" type="text" id="name"&gt;&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;tr&gt;<br />
&lt;td&gt;Lastname&lt;/td&gt;<br />
&lt;td&gt;:&lt;/td&gt;<br />
&lt;td&gt;&lt;input name="lastname" type="text" id="lastname"&gt;&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;tr&gt;<br />
&lt;td&gt;Email&lt;/td&gt;<br />
&lt;td&gt;:&lt;/td&gt;<br />
&lt;td&gt;&lt;input name="email" type="text" id="email"&gt;&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;tr&gt;<br />
&lt;td colspan="3" align="center"&gt;&lt;input type="submit" name="Submit" value="Submit"&gt;&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;/table&gt;<br />
&lt;/form&gt;<br />
&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;/table&gt;<br />
<br />
<br />
<span style="text-decoration: underline;"><span style="font-weight: bold;">PHP CODE</span></span><br />
<br />
&lt;?php<br />
<br />
&#36;host="localhost"; // Host name <br />
&#36;username=""; // Mysql username <br />
&#36;password=""; // Mysql password <br />
&#36;db_name="test"; // Database name <br />
&#36;tbl_name="test_mysql"; // Table name<br />
<br />
// Connect to server and select database.<br />
mysql_connect("&#36;host", "&#36;username", "&#36;password")or die("cannot connect"); <br />
mysql_select_db("&#36;db_name")or die("cannot select DB");<br />
<br />
// Get values from form <br />
&#36;name=&#36;_POST['name'];<br />
&#36;lastname=&#36;_POST['lastname'];<br />
&#36;email=&#36;_POST['email'];<br />
<br />
// Insert data into mysql <br />
&#36;sql="INSERT INTO &#36;tbl_name(name, lastname, email)VALUES('&#36;name', '&#36;lastname', '&#36;email')";<br />
&#36;result=mysql_query(&#36;sql);<br />
<br />
// if successfully insert data into database, displays message "Successful". <br />
if(&#36;result){<br />
echo "Successful";<br />
echo "&lt;BR&gt;";<br />
echo "&lt;a href='insert.php'&gt;Back to main page&lt;/a&gt;";<br />
}<br />
<br />
else {<br />
echo "ERROR";<br />
}<br />
<br />
// close connection <br />
mysql_close();<br />
?&gt;]]></description>
			<content:encoded><![CDATA[<a href="http://www.phpeasystep.com/mysql/5.html" target="_blank">http://www.phpeasystep.com/mysql/5.html</a><br />
<br />
<br />
<span style="text-decoration: underline;"><span style="font-weight: bold;">Create MYSQL Table</span></span><br />
<br />
CREATE TABLE `test_mysql` (<br />
`id` int(4) NOT NULL auto_increment,<br />
`name` varchar(65) NOT NULL default '',<br />
`lastname` varchar(65) NOT NULL default '',<br />
`email` varchar(65) NOT NULL default '',<br />
PRIMARY KEY (`id`)<br />
) TYPE=MyISAM AUTO_INCREMENT=0 ;<br />
<br />
<br />
<span style="font-weight: bold;"><span style="text-decoration: underline;">HTML FORM</span></span><br />
<br />
<br />
<br />
&lt;table width="300" border="0" align="center" cellpadding="0" cellspacing="1"&gt;<br />
&lt;tr&gt;<br />
&lt;td&gt;&lt;form name="form1" method="post" action="insert_ac.php"&gt;<br />
&lt;table width="100%" border="0" cellspacing="1" cellpadding="3"&gt;<br />
&lt;tr&gt;<br />
&lt;td colspan="3"&gt;&lt;strong&gt;Insert Data Into mySQL Database &lt;/strong&gt;&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;tr&gt;<br />
&lt;td width="71"&gt;Name&lt;/td&gt;<br />
&lt;td width="6"&gt;:&lt;/td&gt;<br />
&lt;td width="301"&gt;&lt;input name="name" type="text" id="name"&gt;&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;tr&gt;<br />
&lt;td&gt;Lastname&lt;/td&gt;<br />
&lt;td&gt;:&lt;/td&gt;<br />
&lt;td&gt;&lt;input name="lastname" type="text" id="lastname"&gt;&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;tr&gt;<br />
&lt;td&gt;Email&lt;/td&gt;<br />
&lt;td&gt;:&lt;/td&gt;<br />
&lt;td&gt;&lt;input name="email" type="text" id="email"&gt;&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;tr&gt;<br />
&lt;td colspan="3" align="center"&gt;&lt;input type="submit" name="Submit" value="Submit"&gt;&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;/table&gt;<br />
&lt;/form&gt;<br />
&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;/table&gt;<br />
<br />
<br />
<span style="text-decoration: underline;"><span style="font-weight: bold;">PHP CODE</span></span><br />
<br />
&lt;?php<br />
<br />
&#36;host="localhost"; // Host name <br />
&#36;username=""; // Mysql username <br />
&#36;password=""; // Mysql password <br />
&#36;db_name="test"; // Database name <br />
&#36;tbl_name="test_mysql"; // Table name<br />
<br />
// Connect to server and select database.<br />
mysql_connect("&#36;host", "&#36;username", "&#36;password")or die("cannot connect"); <br />
mysql_select_db("&#36;db_name")or die("cannot select DB");<br />
<br />
// Get values from form <br />
&#36;name=&#36;_POST['name'];<br />
&#36;lastname=&#36;_POST['lastname'];<br />
&#36;email=&#36;_POST['email'];<br />
<br />
// Insert data into mysql <br />
&#36;sql="INSERT INTO &#36;tbl_name(name, lastname, email)VALUES('&#36;name', '&#36;lastname', '&#36;email')";<br />
&#36;result=mysql_query(&#36;sql);<br />
<br />
// if successfully insert data into database, displays message "Successful". <br />
if(&#36;result){<br />
echo "Successful";<br />
echo "&lt;BR&gt;";<br />
echo "&lt;a href='insert.php'&gt;Back to main page&lt;/a&gt;";<br />
}<br />
<br />
else {<br />
echo "ERROR";<br />
}<br />
<br />
// close connection <br />
mysql_close();<br />
?&gt;]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[MYSQL/PHP Code To View Tables]]></title>
			<link>http://714tech.com/forum/thread-3.html</link>
			<pubDate>Sat, 06 Jun 2009 16:00:50 +0000</pubDate>
			<guid isPermaLink="false">http://714tech.com/forum/thread-3.html</guid>
			<description><![CDATA[<span style="font-weight: bold;">Here is another example to display all rows in a table. Replace the connection and table variables with your own.</span><br />
<br />
viewall.php<br />
PHP Code:<br />
&lt;html&gt;  <br />
&lt;head&gt;&lt;title&gt;Your Page Title&lt;/title&gt;&lt;/head&gt;  <br />
&lt;body&gt;  <br />
&lt;?php  <br />
&#36;database="yourdbname";  <br />
mysql_connect ("localhost", "yourusername", "yourpassword");  <br />
@mysql_select_db(&#36;database) or die( "Unable to select database");  <br />
&#36;result = mysql_query( "SELECT * FROM yourtable" )  <br />
or die("SELECT Error: ".mysql_error());  <br />
&#36;num_rows = mysql_num_rows(&#36;result);  <br />
print "There are &#36;num_rows records.&lt;P&gt;";  <br />
print "&lt;table width=400 border=1&gt;\n";  <br />
while (&#36;get_info = mysql_fetch_row(&#36;result)){  <br />
print "&lt;tr&gt;\n";  <br />
foreach (&#36;get_info as &#36;field)  <br />
print "\t&lt;td&gt;&lt;font face=arial size=1/&gt;&#36;field&lt;/font&gt;&lt;/td&gt;\n";  <br />
print "&lt;/tr&gt;\n";  <br />
}  <br />
print "&lt;/table&gt;\n";  <br />
?&gt;  <br />
&lt;/body&gt;  <br />
&lt;/html&gt;<br />
<br />
<br />
<span style="font-weight: bold;">Here is some more code to select only rows from a table.</span><br />
<br />
viewcertainfields.php<br />
PHP Code:<br />
&lt;html&gt;  <br />
&lt;head&gt;&lt;title&gt;Your Page Title&lt;/title&gt;&lt;/head&gt;  <br />
&lt;body&gt;  <br />
&lt;?php  <br />
&#36;database="yourdbname";  <br />
mysql_connect ("localhost", "yourusername", "yourpassword");  <br />
@mysql_select_db(&#36;database) or die( "Unable to select database");  <br />
&#36;result = mysql_query( "SELECT field1, field2, field3 FROM yourtable" )  <br />
or die("SELECT Error: ".mysql_error());  <br />
&#36;num_rows = mysql_num_rows(&#36;result);  <br />
print "There are &#36;num_rows records.&lt;P&gt;";  <br />
print "&lt;table width=200 border=1&gt;\n";  <br />
while (&#36;get_info = mysql_fetch_row(&#36;result)){  <br />
print "&lt;tr&gt;\n";  <br />
foreach (&#36;get_info as &#36;field)  <br />
print "\t&lt;td&gt;&lt;font face=arial size=1/&gt;&#36;field&lt;/font&gt;&lt;/td&gt;\n";  <br />
print "&lt;/tr&gt;\n";  <br />
}  <br />
print "&lt;/table&gt;\n";  <br />
?&gt;  <br />
&lt;/body&gt;  <br />
&lt;/html&gt;<br />
You can also add limit and order to the query.]]></description>
			<content:encoded><![CDATA[<span style="font-weight: bold;">Here is another example to display all rows in a table. Replace the connection and table variables with your own.</span><br />
<br />
viewall.php<br />
PHP Code:<br />
&lt;html&gt;  <br />
&lt;head&gt;&lt;title&gt;Your Page Title&lt;/title&gt;&lt;/head&gt;  <br />
&lt;body&gt;  <br />
&lt;?php  <br />
&#36;database="yourdbname";  <br />
mysql_connect ("localhost", "yourusername", "yourpassword");  <br />
@mysql_select_db(&#36;database) or die( "Unable to select database");  <br />
&#36;result = mysql_query( "SELECT * FROM yourtable" )  <br />
or die("SELECT Error: ".mysql_error());  <br />
&#36;num_rows = mysql_num_rows(&#36;result);  <br />
print "There are &#36;num_rows records.&lt;P&gt;";  <br />
print "&lt;table width=400 border=1&gt;\n";  <br />
while (&#36;get_info = mysql_fetch_row(&#36;result)){  <br />
print "&lt;tr&gt;\n";  <br />
foreach (&#36;get_info as &#36;field)  <br />
print "\t&lt;td&gt;&lt;font face=arial size=1/&gt;&#36;field&lt;/font&gt;&lt;/td&gt;\n";  <br />
print "&lt;/tr&gt;\n";  <br />
}  <br />
print "&lt;/table&gt;\n";  <br />
?&gt;  <br />
&lt;/body&gt;  <br />
&lt;/html&gt;<br />
<br />
<br />
<span style="font-weight: bold;">Here is some more code to select only rows from a table.</span><br />
<br />
viewcertainfields.php<br />
PHP Code:<br />
&lt;html&gt;  <br />
&lt;head&gt;&lt;title&gt;Your Page Title&lt;/title&gt;&lt;/head&gt;  <br />
&lt;body&gt;  <br />
&lt;?php  <br />
&#36;database="yourdbname";  <br />
mysql_connect ("localhost", "yourusername", "yourpassword");  <br />
@mysql_select_db(&#36;database) or die( "Unable to select database");  <br />
&#36;result = mysql_query( "SELECT field1, field2, field3 FROM yourtable" )  <br />
or die("SELECT Error: ".mysql_error());  <br />
&#36;num_rows = mysql_num_rows(&#36;result);  <br />
print "There are &#36;num_rows records.&lt;P&gt;";  <br />
print "&lt;table width=200 border=1&gt;\n";  <br />
while (&#36;get_info = mysql_fetch_row(&#36;result)){  <br />
print "&lt;tr&gt;\n";  <br />
foreach (&#36;get_info as &#36;field)  <br />
print "\t&lt;td&gt;&lt;font face=arial size=1/&gt;&#36;field&lt;/font&gt;&lt;/td&gt;\n";  <br />
print "&lt;/tr&gt;\n";  <br />
}  <br />
print "&lt;/table&gt;\n";  <br />
?&gt;  <br />
&lt;/body&gt;  <br />
&lt;/html&gt;<br />
You can also add limit and order to the query.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[PHP/MYSQL Test Script]]></title>
			<link>http://714tech.com/forum/thread-2.html</link>
			<pubDate>Sat, 06 Jun 2009 07:20:42 +0000</pubDate>
			<guid isPermaLink="false">http://714tech.com/forum/thread-2.html</guid>
			<description><![CDATA[This is a test script to see your connection with php/mysql,<br /><!-- start: postbit_attachments_attachment -->
<br /><img src="images/attachtypes/php.gif" border="0" alt=".php" />&nbsp;&nbsp;<a href="attachment.php?aid=1" target="_blank">test7.php</a> (Size: 4.12 KB / Downloads: 0)
<!-- end: postbit_attachments_attachment -->]]></description>
			<content:encoded><![CDATA[This is a test script to see your connection with php/mysql,<br /><!-- start: postbit_attachments_attachment -->
<br /><img src="images/attachtypes/php.gif" border="0" alt=".php" />&nbsp;&nbsp;<a href="attachment.php?aid=1" target="_blank">test7.php</a> (Size: 4.12 KB / Downloads: 0)
<!-- end: postbit_attachments_attachment -->]]></content:encoded>
		</item>
	</channel>
</rss>