<?xml version="1.0" encoding="ISO-8859-1"?>

<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
		<title><![CDATA[Web Design & Web Development Forum: HTML, CSS, JavaScript, PHP]]></title>
		<link>http://www.webdevforums.com/</link>
		<description>Web Designers and Web Developers discussing all aspects of website design: HTML, CSS, Graphic design, PHP, web hosting, freelancing. Website optimization advices.</description>
		<language>en</language>
		<lastBuildDate>Wed, 16 May 2012 14:35:12 GMT</lastBuildDate>
		<generator>vBulletin</generator>
		<ttl>60</ttl>
		<image>
			<url>http://www.webdevforums.com/images/misc/rss.png</url>
			<title><![CDATA[Web Design & Web Development Forum: HTML, CSS, JavaScript, PHP]]></title>
			<link>http://www.webdevforums.com/</link>
		</image>
		<item>
			<title>www/nonwww</title>
			<link>http://www.webdevforums.com/showthread.php?54017-www-nonwww&amp;goto=newpost</link>
			<pubDate>Wed, 16 May 2012 10:22:03 GMT</pubDate>
			<description>Which is better practicing www or non www for a site? 
 
Discount Coupon Codes (http://www.couponsforzipcodes.com/)</description>
			<content:encoded><![CDATA[<div>Which is better practicing www or non www for a site?<br />
<a href="http://www.couponsforzipcodes.com/" target="_blank"><br />
Discount Coupon Codes</a></div>

 ]]></content:encoded>
			<category domain="http://www.webdevforums.com/forumdisplay.php?27-Search-Engine-Optimization-and-Marketing">Search Engine Optimization and Marketing</category>
			<dc:creator>marianajones</dc:creator>
			<guid isPermaLink="true">http://www.webdevforums.com/showthread.php?54017-www-nonwww</guid>
		</item>
		<item>
			<title>What is Database noramalizaion?</title>
			<link>http://www.webdevforums.com/showthread.php?54016-What-is-Database-noramalizaion&amp;goto=newpost</link>
			<pubDate>Wed, 16 May 2012 04:01:26 GMT</pubDate>
			<description>Database normalization is the process of organizing the fields and tables of a relational database to minimize redundancy and dependency. Normalization usually involves dividing large tables into smaller (and less redundant) tables and defining relationships between them. The objective is to...</description>
			<content:encoded><![CDATA[<div>Database normalization is the process of organizing the fields and tables of a relational database to minimize redundancy and dependency. Normalization usually involves dividing large tables into smaller (and less redundant) tables and defining relationships between them. The objective is to isolate data so that additions, deletions, and modifications of a field can be made in just one table and then propagated through the rest of the database via the defined relationships.</div>

 ]]></content:encoded>
			<category domain="http://www.webdevforums.com/forumdisplay.php?27-Search-Engine-Optimization-and-Marketing">Search Engine Optimization and Marketing</category>
			<dc:creator>JackITo</dc:creator>
			<guid isPermaLink="true">http://www.webdevforums.com/showthread.php?54016-What-is-Database-noramalizaion</guid>
		</item>
		<item>
			<title>Problem in syntax from mysql to php syntax</title>
			<link>http://www.webdevforums.com/showthread.php?54015-Problem-in-syntax-from-mysql-to-php-syntax&amp;goto=newpost</link>
			<pubDate>Wed, 16 May 2012 03:11:31 GMT</pubDate>
			<description>Hi.. 
 
I create mysql syntax for query testing before i input to my php code 
 
here is my mysql code: 
 
 
Code: 
--------- 
set @t = 0;</description>
			<content:encoded><![CDATA[<div>Hi..<br />
<br />
I create mysql syntax for query testing before i input to my php code<br />
<br />
here is my mysql code:<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">set @t = 0;<br />
set @rqty=31968; <br />
SELECT LOT_CODE as code,&nbsp; DATE_ENTRY,&nbsp;  <br />
CASE WHEN @t+OUTPUT_QTY &gt; @rqty <br />
THEN @rqty&nbsp; -@t&nbsp; <br />
ELSE OUTPUT_QTY <br />
END as qty,<br />
@t := @t + d.OUTPUT_QTY as cumulative&nbsp;  <br />
FROM dipping d&nbsp; WHERE SUBSTR(LOT_CODE, 9,4) = 'P28' AND (@t &lt; @rqty);</code><hr />
</div> Now that query test is work i  will input that code to my php codes.<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">PHP Code:</div>
	<hr /><code class="bbcode_code"><code><span style="color: #000000">
<span style="color: #0000BB">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$sql&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #DD0000">"SELECT&nbsp;SKUCode,&nbsp;Materials,&nbsp;Comp,&nbsp;Qty&nbsp;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;FROM&nbsp;bom&nbsp;&nbsp;WHERE&nbsp;SKUCode&nbsp;=&nbsp;'$SKUCode'"</span><span style="color: #007700">;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">$res&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">mysql_query</span><span style="color: #007700">(</span><span style="color: #0000BB">$sql</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">$con</span><span style="color: #007700">);<br /><br />&nbsp;&nbsp;&nbsp;&nbsp;(</span><span style="color: #0000BB">$row&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">mysql_fetch_assoc</span><span style="color: #007700">(</span><span style="color: #0000BB">$res</span><span style="color: #007700">));<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">$Materials&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">$row</span><span style="color: #007700">&#91;</span><span style="color: #DD0000">'Materials'</span><span style="color: #007700">&#93;;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">$Qty&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">$row</span><span style="color: #007700">&#91;</span><span style="color: #DD0000">'Qty'</span><span style="color: #007700">&#93;;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">$Comp&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">$row</span><span style="color: #007700">&#91;</span><span style="color: #DD0000">'Comp'</span><span style="color: #007700">&#93;;&nbsp;</span><span style="color: #FF8000">//P28<br />//-----Compute&nbsp;Req&nbsp;Qty&nbsp;and&nbsp;Save&nbsp;to&nbsp;table---//&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /><br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">$ReqQty&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">$Qty&nbsp;</span><span style="color: #007700">*&nbsp;</span><span style="color: #0000BB">$POReq</span><span style="color: #007700">;&nbsp;</span><span style="color: #FF8000">//&nbsp;31968<br /><br /><br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /></span><span style="color: #0000BB">$sql&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #DD0000">"UPDATE&nbsp;bom&nbsp;SET&nbsp;ReqQty&nbsp;=&nbsp;'$ReqQty'&nbsp;WHERE&nbsp;SKUCode&nbsp;=&nbsp;'$SKUCode'&nbsp;AND&nbsp;Materials&nbsp;=&nbsp;'$Materials'"</span><span style="color: #007700">;<br /></span><span style="color: #0000BB">$resReqQty&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">mysql_query</span><span style="color: #007700">(</span><span style="color: #0000BB">$sql</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">$con</span><span style="color: #007700">);<br /><br /></span><span style="color: #0000BB">$t&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">0</span><span style="color: #007700">;<br /><br /></span><span style="color: #0000BB">$sql&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #DD0000">"SELECT&nbsp;LOT_CODE&nbsp;as&nbsp;code,&nbsp;&nbsp;DATE_ENTRY,&nbsp;&nbsp;&nbsp;<br />CASE&nbsp;WHEN&nbsp;$t+OUTPUT_QTY&nbsp;&gt;&nbsp;$ReqQty&nbsp;<br />THEN&nbsp;$ReqQty&nbsp;&nbsp;-$t&nbsp;&nbsp;<br />ELSE&nbsp;OUTPUT_QTY&nbsp;<br />END&nbsp;as&nbsp;qty,<br />$t&nbsp;:=&nbsp;$t&nbsp;+&nbsp;d.OUTPUT_QTY&nbsp;as&nbsp;cumulative&nbsp;&nbsp;&nbsp;<br />FROM&nbsp;dipping&nbsp;d&nbsp;&nbsp;WHERE&nbsp;SUBSTR(LOT_CODE,&nbsp;9,4)&nbsp;=&nbsp;'$Comp'&nbsp;AND&nbsp;($t&nbsp;&lt;&nbsp;$ReqQty)"</span><span style="color: #007700">;&nbsp;<br /></span><span style="color: #0000BB"></span>
</span>
</code></code><hr />
</div> <br />
when I echo the query:<br />
<br />
I got this:<br />
<br />
 SELECT LOT_CODE as code, DATE_ENTRY, CASE WHEN 0+OUTPUT_QTY &gt; 31968 THEN 31968 -0 ELSE OUTPUT_QTY END as qty, 0 := 0 + d.OUTPUT_QTY as cumulative FROM dipping d WHERE SUBSTR(LOT_CODE, 9,4) = 'P28' AND (0 &lt; 31968)<br />
<br />
then I run it to the sql<br />
<br />
and I got an error:<br />
<br />
Error Code : 1064<br />
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ':= 0 + d.OUTPUT_QTY as cumulative FROM dipping d WHERE SUBSTR(LOT_CODE, 9,4) = '' at line 1<br />
(0 ms taken)<br />
<br />
<br />
Any help is highly appreciated<br />
<br />
Thank you so much</div>

 ]]></content:encoded>
			<category domain="http://www.webdevforums.com/forumdisplay.php?5-Client-amp-Server-Side-Scripting-(PHP-ASP-JavaScript)"><![CDATA[Client & Server Side Scripting (PHP, ASP, JavaScript)]]></category>
			<dc:creator>newphpbees</dc:creator>
			<guid isPermaLink="true">http://www.webdevforums.com/showthread.php?54015-Problem-in-syntax-from-mysql-to-php-syntax</guid>
		</item>
		<item>
			<title>Top Movie Converter for Apple TV 3 - Stream Blu-ray/DVD/1080p HD videos to Apple TV 3</title>
			<link>http://www.webdevforums.com/showthread.php?54014-Top-Movie-Converter-for-Apple-TV-3-Stream-Blu-ray-DVD-1080p-HD-videos-to-Apple-TV-3&amp;goto=newpost</link>
			<pubDate>Wed, 16 May 2012 00:57:21 GMT</pubDate>
			<description>Top Movie Converter for Apple TV 3 - Stream Blu-ray/DVD/1080p HD videos to Apple TV 3  
  
Image: http://dvd-to-kindle-fire.com/wp-content/uploads/2012/05/enjoy-1080p-contents-on-apple-tv-3.jpg  (http://www.pavtube.com/apple-tv-3.html)  
  
Apple TV 3 is a hot device for you to watch videos on your...</description>
			<content:encoded><![CDATA[<div>Top Movie Converter for Apple TV 3 - Stream Blu-ray/DVD/1080p HD videos to Apple TV 3 <br />
 <br />
<a href="http://www.pavtube.com/apple-tv-3.html" target="_blank"><img src="http://dvd-to-kindle-fire.com/wp-content/uploads/2012/05/enjoy-1080p-contents-on-apple-tv-3.jpg" border="0" alt="" /></a> <br />
 <br />
Apple TV 3 is a hot device for you to watch videos on your TV, released on march this year, the Apple TV 3 has attracted great attention the same as the new iPad. The Apple TV 3 is great for us to watch high-definition movies on HDTV. May be you have collected many Blu-ray or DVD discs, or have download many HD movies in different video formats from websites, now you can watch these movies easily on TV through Apple TV 3, just need a Apple TV 3 video converter, below is a brief guide for you to better play Blu-ray, DVD and HD videos on Apple TV 3 without the limitation of the video formats, just follow it. <br />
 <br />
1.Download <b>Pavtube <a href="http://www.pavtube.com/blu-ray-video-converter-ultimate/" target="_blank">Blu-ray Video Converter Ultimate</a></b>, a top Movie Converter for Apple TV 3, if you need to run the software on Mac OS, please download <b><a href="http://www.pavtube.com/imedia-converter-mac/" target="_blank">iMedia Converter for Mac</a></b>. With this excellent software, you can rip Blu-ray, DVD and HD files to Apple TV 3 supported formats. <br />
<img src="http://image.pavtube.com/img/screenshot/blu-ray-video-converter-ultimate/import.jpg" border="0" alt="" /> <br />
 <br />
2.Install and launch this Blu-ray/DVD/HD to Apple TV 3 converter. <br />
 <br />
3. Click format bar to choose the output format, please click and choose Apple TV -&gt; Apple TV H.264 1280*720 (*.mp4), this format is perfectly supported by Apple TV 3. Besides, you can choose other formats for output as you want. <br />
<img src="http://image.pavtube.com/img/devices/vc-profile-atv3.jpg" border="0" alt="" /> <br />
 <br />
4. You can click settings button in the main interface to adjust the output parameters, you can change the resolution, bitrate and audio channels as you want. <br />
<img src="http://image.pavtube.com/img/devices/vc-settings-atv3.jpg" border="0" alt="" />  <br />
 <br />
5. Click convert button to start. <br />
 <br />
With <b>Pavtube <a href="http://www.pavtube.com/blu-ray-video-converter-ultimate/" target="_blank">Blu-ray Video Converter Ultimate for Apple TV 3</a></b>, you can <a href="http://www.pavtube.com/apple-tv-3.html" target="_blank">convert Blu-ray to Apple TV 3</a>, <a href="http://www.pavtube.com/apple-tv-3.html" target="_blank">convert DVD to Apple TV 3</a>, or <a href="http://www.pavtube.com/apple-tv-3.html" target="_blank">convert MKV to Apple TV 3</a>, etc. you can play any videos in Apple TV 3 without limitations. What&#8217;s more, you can go to <a href="http://www.pavtube.com/apple-tv-3.html" target="_blank">Apple TV 3 column</a> to find detail solutions. <br />
 <br />
If you just want to <a href="http://www.pavtube.com/guide/convert-mkv-avi-tivo-m2ts-to-atv3-on-mac.html" target="_blank">convert mkv/avi/tivo/m2ts to atv 3 on mac</a>, you can try <a href="http://www.pavtube.com/video-converter-mac/" target="_blank">mac video converter for atv 3</a>, it's an excellent <a href="http://www.pavtube.com/guide/convert-mkv-avi--tivo-m2ts-to-atv3-on-mac.html" target="_blank">apple tv 3 converter for mac</a>. <br />
 <br />
<b>Check out Pavtube's </b><a href="http://www.pavtube.com/apple-tv-3.html" target="_blank"><font size="5"><b>Apple TV 3 column</b></font></a> to get more movie-enjoyment tips about Apple TV 3 and more special offers during <a href="http://www.pavtube.com/2012-mothers-day-software-sale.html" target="_blank"><font size="3"><b>Pavtube's Big Sale Season</b></font></a>.</div>

 ]]></content:encoded>
			<category domain="http://www.webdevforums.com/forumdisplay.php?34-Tutorials">Tutorials</category>
			<dc:creator>kelly456</dc:creator>
			<guid isPermaLink="true">http://www.webdevforums.com/showthread.php?54014-Top-Movie-Converter-for-Apple-TV-3-Stream-Blu-ray-DVD-1080p-HD-videos-to-Apple-TV-3</guid>
		</item>
		<item>
			<title>Creating a tableless image grid with CSS</title>
			<link>http://www.webdevforums.com/showthread.php?54013-Creating-a-tableless-image-grid-with-CSS&amp;goto=newpost</link>
			<pubDate>Tue, 15 May 2012 18:57:53 GMT</pubDate>
			<description>Hey guys, as always I’m trying to do something seemingly simple and am having some bizarre issues. I’m just trying to make a simple image grid without using tables. 
 
 
sheffieldfurniture.com/imagegrid/furniture.html 
First issue is, why is there a space between the images here? It seems like it’s...</description>
			<content:encoded><![CDATA[<div>Hey guys, as always I’m trying to do something seemingly simple and am having some bizarre issues. I’m just trying to make a simple image grid without using tables.<br />
<br />
<br />
sheffieldfurniture.com/imagegrid/furniture.html<br />
First issue is, why is there a space between the images here? It seems like it’s adding a margin although Chrome developer tools is not saying that the images have any margin applied to them. I do want to have the images spaced out but I can’t do the math necessary for doing that if some browsers are going to be randomly adding a margin.<br />
<br />
<br />
<br />
sheffieldfurniture.com/imagegrid/furniturefloat.html<br />
I was able to fix this by floating everything left. Is this the proper fix? It still bugs me that I couldn’t figure out why the images had space in-between<br />
<br />
<br />
Let me know if I’m going about this wrong, is this how you guys would do a simple images grid? Also, I suck at math, how would you go about determining how large to make the images and how much margin? The parent container will be 960 Pixels and I’d like rows of 5 across to be centered</div>

 ]]></content:encoded>
			<category domain="http://www.webdevforums.com/forumdisplay.php?2-Web-Design-HTML-Reference-and-CSS">Web Design, HTML Reference and CSS</category>
			<dc:creator>jpf566</dc:creator>
			<guid isPermaLink="true">http://www.webdevforums.com/showthread.php?54013-Creating-a-tableless-image-grid-with-CSS</guid>
		</item>
		<item>
			<title>what is Difference Between White hat, Black hat n Gray hat SEO??</title>
			<link>http://www.webdevforums.com/showthread.php?54012-what-is-Difference-Between-White-hat-Black-hat-n-Gray-hat-SEO&amp;goto=newpost</link>
			<pubDate>Tue, 15 May 2012 18:51:12 GMT</pubDate>
			<description>HI friends, 
 
I need ur views regarding dese terms Difference Between White hat, Black hat n Gray hat SEO?? 
 
Thnx 4 Advance 
:)</description>
			<content:encoded><![CDATA[<div>HI friends,<br />
<br />
I need ur views regarding dese terms Difference Between White hat, Black hat n Gray hat SEO??<br />
<br />
Thnx 4 Advance<br />
:)</div>

 ]]></content:encoded>
			<category domain="http://www.webdevforums.com/forumdisplay.php?27-Search-Engine-Optimization-and-Marketing">Search Engine Optimization and Marketing</category>
			<dc:creator>RobetsJulia</dc:creator>
			<guid isPermaLink="true">http://www.webdevforums.com/showthread.php?54012-what-is-Difference-Between-White-hat-Black-hat-n-Gray-hat-SEO</guid>
		</item>
		<item>
			<title>What is meant by spamming?</title>
			<link>http://www.webdevforums.com/showthread.php?54011-What-is-meant-by-spamming&amp;goto=newpost</link>
			<pubDate>Tue, 15 May 2012 13:57:43 GMT</pubDate>
			<description>I just want to ask web masters here What is meant by spamming? 
 
Whether it is doing link building activities more quickly to promote  keyword : For example using the same content for all article and blogs (or) having duplicate contents in your website.</description>
			<content:encoded><![CDATA[<div>I just want to ask web masters here What is meant by spamming?<br />
<br />
Whether it is doing link building activities more quickly to promote  keyword : For example using the same content for all article and blogs (or) having duplicate contents in your website.</div>

 ]]></content:encoded>
			<category domain="http://www.webdevforums.com/forumdisplay.php?27-Search-Engine-Optimization-and-Marketing">Search Engine Optimization and Marketing</category>
			<dc:creator>Ndot India</dc:creator>
			<guid isPermaLink="true">http://www.webdevforums.com/showthread.php?54011-What-is-meant-by-spamming</guid>
		</item>
		<item>
			<title>Marketing In SEO</title>
			<link>http://www.webdevforums.com/showthread.php?54010-Marketing-In-SEO&amp;goto=newpost</link>
			<pubDate>Tue, 15 May 2012 13:14:21 GMT</pubDate>
			<description>Please Tell me Marketing In SEO possible or not?And How</description>
			<content:encoded><![CDATA[<div>Please Tell me Marketing In SEO possible or not?And How</div>

 ]]></content:encoded>
			<category domain="http://www.webdevforums.com/forumdisplay.php?27-Search-Engine-Optimization-and-Marketing">Search Engine Optimization and Marketing</category>
			<dc:creator>akash001</dc:creator>
			<guid isPermaLink="true">http://www.webdevforums.com/showthread.php?54010-Marketing-In-SEO</guid>
		</item>
		<item>
			<title>Help on Rich Snippets</title>
			<link>http://www.webdevforums.com/showthread.php?54009-Help-on-Rich-Snippets&amp;goto=newpost</link>
			<pubDate>Tue, 15 May 2012 10:03:46 GMT</pubDate>
			<description>Lots of Information and post i have found but non of them enough to understand how enable review and rating code for my website. 
 
wellcome all expert to help me out. 
 
Thanks in Advance.</description>
			<content:encoded><![CDATA[<div>Lots of Information and post i have found but non of them enough to understand how enable review and rating code for my website.<br />
<br />
wellcome all expert to help me out.<br />
<br />
Thanks in Advance.</div>

 ]]></content:encoded>
			<category domain="http://www.webdevforums.com/forumdisplay.php?27-Search-Engine-Optimization-and-Marketing">Search Engine Optimization and Marketing</category>
			<dc:creator>SSLMatrix</dc:creator>
			<guid isPermaLink="true">http://www.webdevforums.com/showthread.php?54009-Help-on-Rich-Snippets</guid>
		</item>
		<item>
			<title>Convert MOD to Galaxy S II to Play</title>
			<link>http://www.webdevforums.com/showthread.php?54008-Convert-MOD-to-Galaxy-S-II-to-Play&amp;goto=newpost</link>
			<pubDate>Tue, 15 May 2012 06:30:51 GMT</pubDate>
			<description><![CDATA[How to Convert MOD to Samsung Galaxy S II on Mac 
 
"I get some HD videos at format MOD, now I want to play them on my Samsung Galaxy S II, but the Galaxy S II would not accept them, what shall I do to play such MOD files on Galaxy SII? Thanks for your help." 
 
Samsung Galaxy S II is an excellent...]]></description>
			<content:encoded><![CDATA[<div>How to Convert MOD to Samsung Galaxy S II on Mac<br />
<br />
&quot;I get some HD videos at format MOD, now I want to play them on my Samsung Galaxy S II, but the Galaxy S II would not accept them, what shall I do to play such MOD files on Galaxy SII? Thanks for your help.&quot;<br />
<br />
Samsung Galaxy S II is an excellent smart phone. It comes with a 4.3-inch screen with resolution of 480*800, which is very good at play video, but just like most smart phones, it can only play DivX, H.263, H.264, MPEG-4, WMV, XviD video files, such as MOD,TOD,MTS,AVCHD and the like HD formats are not supported, so, if you want to play MOD videos on Galaxy SII, you need to convert them to the formats it supports, for example,MP4. To convert MOD to Samsung Galaxy SII MP4, what you need is only a Video Converter. I highly recommend iOrgsoft MOD to Samsung Galaxy Converter, which can easily convert all MOD video files to MP4 fast.<br />
<br />
iOrgsoft <a href="http://www.iorgsoft.com/Mod-Converter-for-Mac/" target="_blank">MOD Converter for Mac</a>  is a powerful software to convert Panasonic SDR, JVC Evirio, Canon FS MOD files to MP4 for playback on Galaxy S II as well as other devices such as Kindle Fire, Samsung Galaxy Tab 10.1, iPhone 4S and so on. Besides, it can provide full video editing functions such as clip mod, crop mod, adjust video effect and so on to help you make your personalized movies. This article will show you how to convert MOD to Galaxy S II on Mac step by step.<br />
<br />
<br />
Guide on How to Convert MOD to Galaxy S II on Mac<br />
<br />
Step 1: Free Download and install <a href="http://www.iorgsoft.com/Mod-Converter-for-Mac/" target="_blank">mod Converter Mac</a> and run it<br />
<br />
Step 2: Click Add File button to import MOD file and click the pull-up list of Profile to set output format as MP4 ,select a path to save the converted file below the Output.<br />
<br />
Tips: With <a href="http://www.iorgsoft.com/Mod-Converter-for-Mac/" target="_blank">.mod Converter Mac</a>,you can clip and edit the MOD video:split video into several segments, crop the video(remove unwanted part, zoom as full screen, 16:9,4:3), and set effect(brightness, contrast, saturation and special effect such as Old Film,Gray,Emboss for the video).<br />
<br />
Step 3: Setting<br />
<br />
Make settings below before convert, especially Resolution<br />
<br />
Hit Start button, the .mod Converter for Mac will show you the converting status on a progressing bar.<br />
<br />
After finish converting, you can transfer the converted video to your Galaxy SII to play whenever and wherever.</div>

 ]]></content:encoded>
			<category domain="http://www.webdevforums.com/forumdisplay.php?3-Graphic-Design">Graphic Design</category>
			<dc:creator>peterluo518</dc:creator>
			<guid isPermaLink="true">http://www.webdevforums.com/showthread.php?54008-Convert-MOD-to-Galaxy-S-II-to-Play</guid>
		</item>
		<item>
			<title>Support MiniGal Nano</title>
			<link>http://www.webdevforums.com/showthread.php?54007-Support-MiniGal-Nano&amp;goto=newpost</link>
			<pubDate>Tue, 15 May 2012 02:52:46 GMT</pubDate>
			<description><![CDATA[If you like MiniGal Nano there are several ways you can support the project: 
 
Donate money 
Click the donate button in the main website footer 
 
Rate the script 
Please visit the sites below and give Nano a good rating - it's quick and easy :) 
OpensourceCMS 
Hotscripts 
Gscripts]]></description>
			<content:encoded><![CDATA[<div>If you like MiniGal Nano there are several ways you can support the project:<br />
<br />
Donate money<br />
Click the donate button in the main website footer<br />
<br />
Rate the script<br />
Please visit the sites below and give Nano a good rating - it's quick and easy :)<br />
OpensourceCMS<br />
Hotscripts<br />
Gscripts<br />
<br />
<a href="http://www.hitechito.com/technology/open-source-technologies/cs-cart-development.php" target="_blank">CS Cart Customization</a> | <a href="http://www.hitechito.com/technology/open-source-technologies/zencart-development.php" target="_blank">Zen Cart Customization</a> | <a href="http://www.hitechito.com/technology/open-source-technologies/magento-development.php" target="_blank">Magento Customization</a></div>

 ]]></content:encoded>
			<category domain="http://www.webdevforums.com/forumdisplay.php?27-Search-Engine-Optimization-and-Marketing">Search Engine Optimization and Marketing</category>
			<dc:creator>JackITo</dc:creator>
			<guid isPermaLink="true">http://www.webdevforums.com/showthread.php?54007-Support-MiniGal-Nano</guid>
		</item>
		<item>
			<title>2 containers within each other</title>
			<link>http://www.webdevforums.com/showthread.php?54006-2-containers-within-each-other&amp;goto=newpost</link>
			<pubDate>Mon, 14 May 2012 21:25:25 GMT</pubDate>
			<description>Hi,i am looking to find out if it is possible to have a container within each other. For example I am looking to have a container of 900px that then has 2 divs of 450px next to each and within the first div (450px) i would like to split this by 225px but not sure how i can go about writing this. 
...</description>
			<content:encoded><![CDATA[<div>Hi,i am looking to find out if it is possible to have a container within each other. For example I am looking to have a container of 900px that then has 2 divs of 450px next to each and within the first div (450px) i would like to split this by 225px but not sure how i can go about writing this.<br />
<br />
If somebody could please help would really appreciate it.<br />
<br />
Thanks in advance</div>

 ]]></content:encoded>
			<category domain="http://www.webdevforums.com/forumdisplay.php?2-Web-Design-HTML-Reference-and-CSS">Web Design, HTML Reference and CSS</category>
			<dc:creator>mowen10</dc:creator>
			<guid isPermaLink="true">http://www.webdevforums.com/showthread.php?54006-2-containers-within-each-other</guid>
		</item>
		<item>
			<title>Function is displaying javascript code instead of processing it</title>
			<link>http://www.webdevforums.com/showthread.php?54005-Function-is-displaying-javascript-code-instead-of-processing-it&amp;goto=newpost</link>
			<pubDate>Mon, 14 May 2012 18:31:18 GMT</pubDate>
			<description><![CDATA[Hi guys, 
As you can probably see below, by clicking the submit button it is reloading the browser and displaying my sender.js file's script, as opposed to processing it. I guess I'm using the wrong "command" (correct terminology?) and should not be using action(I guess?), but another command. What...]]></description>
			<content:encoded><![CDATA[<div>Hi guys,<br />
As you can probably see below, by clicking the submit button it is reloading the browser and displaying my sender.js file's script, as opposed to processing it. I guess I'm using the wrong &quot;command&quot; (correct terminology?) and should not be using action(I guess?), but another command. What should it be?<br />
<br />
Many thanks,<br />
<br />
M.<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">function submitFunction(i) {<br />
&nbsp;  if (i==1) document.forms['form1'].action='sender.js';<br />
&nbsp;  if (i==2) document.forms['form2'].action='test.js';<br />
&nbsp;  }<br />
&lt;/script&gt;</code><hr />
</div> </div>

 ]]></content:encoded>
			<category domain="http://www.webdevforums.com/forumdisplay.php?5-Client-amp-Server-Side-Scripting-(PHP-ASP-JavaScript)"><![CDATA[Client & Server Side Scripting (PHP, ASP, JavaScript)]]></category>
			<dc:creator>mitch123</dc:creator>
			<guid isPermaLink="true">http://www.webdevforums.com/showthread.php?54005-Function-is-displaying-javascript-code-instead-of-processing-it</guid>
		</item>
		<item>
			<title>Selecting Colours</title>
			<link>http://www.webdevforums.com/showthread.php?54004-Selecting-Colours&amp;goto=newpost</link>
			<pubDate>Mon, 14 May 2012 13:14:33 GMT</pubDate>
			<description><![CDATA[Hi, Found this a few days ago and I thought it was great so I have decided to share it. It was originally from a fourm so sorry if it was your post or have seen it here before I thought it was worth the risk! :)[ATTACH=CONFIG]760[/ATTACH]]]></description>
			<content:encoded><![CDATA[<div>Hi, Found this a few days ago and I thought it was great so I have decided to share it. It was originally from a fourm so sorry if it was your post or have seen it here before I thought it was worth the risk! :)<a href="http://www.webdevforums.com/attachment.php?attachmentid=760"  title="Name:  
Views: 
Size:  ">Attachment 760</a></div>


	<div style="padding:10px">

	

	

	
		<fieldset class="fieldset">
			<legend>Attached Images</legend>
			<ul>
			<li>
	<img class="inlineimg" src="/jpg.gif" alt="File Type: jpg" />
	<a href="http://www.webdevforums.com/attachment.php?attachmentid=760&amp;d=1337001222" target="_blank">colour theory.jpg&lrm;</a> 
(34.7 KB)
</li> 
			</ul>
			</fieldset>
	

	

	</div>
 ]]></content:encoded>
			<category domain="http://www.webdevforums.com/forumdisplay.php?3-Graphic-Design">Graphic Design</category>
			<dc:creator>AJ Hypnotherapy</dc:creator>
			<guid isPermaLink="true">http://www.webdevforums.com/showthread.php?54004-Selecting-Colours</guid>
		</item>
		<item>
			<title>How do i create links to sections on the same page in HTML?</title>
			<link>http://www.webdevforums.com/showthread.php?54003-How-do-i-create-links-to-sections-on-the-same-page-in-HTML&amp;goto=newpost</link>
			<pubDate>Mon, 14 May 2012 13:14:06 GMT</pubDate>
			<description>How do i create links to sections on the same page in HTML?</description>
			<content:encoded><![CDATA[<div>How do i create links to sections on the same page in HTML?</div>

 ]]></content:encoded>
			<category domain="http://www.webdevforums.com/forumdisplay.php?2-Web-Design-HTML-Reference-and-CSS">Web Design, HTML Reference and CSS</category>
			<dc:creator>hirewebsitedesi</dc:creator>
			<guid isPermaLink="true">http://www.webdevforums.com/showthread.php?54003-How-do-i-create-links-to-sections-on-the-same-page-in-HTML</guid>
		</item>
	</channel>
</rss>

