<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>

<channel>
	<title>ARABYAREA.com</title>
	<atom:link href="http://www.arabyarea.com/en/feed" rel="self" type="application/rss+xml" />
	<link>http://www.arabyarea.com/en</link>
	<description>Digital world</description>
	<pubDate>Mon, 09 Apr 2012 11:30:00 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
	<language>en</language>
			<item>
		<title>http://www.arabyarea.com : How make 301 .... </title>
		<link>http://www.arabyarea.com/en/how-make-301-seo-redirect-using-php.htm</link>
		<comments>http://www.arabyarea.com/en/how-make-301-seo-redirect-using-php.htm#comments</comments>
		<pubDate>Mon, 09 Apr 2012 11:30:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.arabyarea.com/en/?p=6745</guid>
		<description><![CDATA[Here we will show you how to make a search engine optimized redirect from one location to other]]></description>
			<content:encoded><![CDATA[<p>Here we will show you how to make a search engine optimized redirect from one location to other, the 301 means that this page is moved forever to indicate to search engine to remove this page from it&#8217;s index, this redirects used commonly when you have a low quality content and you want to redirect the search engine to a new version of the content that cover the same subject as the old one, this tell the search engines to do there actions. the PHP code can be as the following:</p>
<blockquote><p>header (&#8217;HTTP/1.1 301 Moved Permanently&#8217;);<br />
header (&#8217;Location: http://www.newsite.com&#8217;);</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.arabyarea.com/en/how-make-301-seo-redirect-using-php.htm/feed</wfw:commentRss>
		</item>
		<item>
		<title>http://www.arabyarea.com : Create Secure Login .... </title>
		<link>http://www.arabyarea.com/en/secure-login-using-php-sessions.htm</link>
		<comments>http://www.arabyarea.com/en/secure-login-using-php-sessions.htm#comments</comments>
		<pubDate>Sat, 12 Jun 2010 21:30:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[PHP]]></category>

		<category><![CDATA[PHP and sessions]]></category>

		<guid isPermaLink="false">http://www.arabyarea.com/en/?p=6736</guid>
		<description><![CDATA[To do a secure login using PHP suppose you have a page called login.php that has the login form and the page logincheck.php, you have to take in your account these points ...]]></description>
			<content:encoded><![CDATA[<p>To do a secure login using PHP suppose you have a page called <strong>login.php</strong> that has the login form and the page <strong>logincheck.php</strong>, you have to take in your account these points</p>
<p>1- Use the token ID to validate the submission for example to validate the login you generate a token ID in login.php as the following</p>
<p><span style="color: #808080;">&lt;?php</span></p>
<p><span style="color: #808080;">/*** begin a session ***/<br />
session_start();</span></p>
<p><span style="color: #808080;">/*** set a token ID ***/<br />
$tokenID = md5( uniqid(&#8217;auth&#8217;, true) );</span></p>
<p><span style="color: #808080;">/*** set the session form token ***/<br />
$_SESSION['tokenID'] = $tokenID ;<br />
?&gt;</span></p>
<p>The token ID must be submitted may be in hidden field as the following:</p>
<p>&lt;input type=&#8221;hidden&#8221; name=&#8221; token ID&#8221; value=&#8221;&lt;?php echo $form_token; ?&gt;&#8221; /&gt;</p>
<p>In logincheck.php you have to check the following:</p>
<p><span style="color: #808080;">if( $_POST['tokenID'] != $_SESSION['tokenID'])<br />
{<br />
echo &#8216;Invalid form submission&#8217;;</span></p>
<p><span style="color: #808080;">exit(0);<br />
}</span></p>
<p>2- use htmlspecialchars to convert html tags .</p>
<p>3- use addslashes to escape &#8216;</p>
<p>4- use session_regenerate_id() to prevent session fixation :</p>
<p><span style="color: #808080;">&lt;?php</span></p>
<p><span style="color: #808080;">if(mysql_num_rows($result)&gt;0) {</span></p>
<p><span style="color: #808080;">//Login Successful .. Regenerate session ID to</span></p>
<p><span style="color: #808080;">//prevent session fixation attacks</span></p>
<p><span style="color: #808080;">session_regenerate_id();</span></p>
<p><span style="color: #808080;">$member=mysql_fetch_assoc($result);</span></p>
<p><span style="color: #808080;">$_SESSION['SESS_MEMBER_ID']=$member['member_id'];</span></p>
<p><span style="color: #808080;">//Write session to disc</span></p>
<p><span style="color: #808080;">session_write_close();</span></p>
<p><span style="color: #808080;">header(&#8221;location: member-index.php&#8221;);</span></p>
<p><span style="color: #808080;">exit();</span></p>
<p><span style="color: #808080;">} ?&gt;</span></p>
<p>6- use unset($_SESSION['SESS_MEMBER_ID']); to logout</p>
]]></content:encoded>
			<wfw:commentRss>http://www.arabyarea.com/en/secure-login-using-php-sessions.htm/feed</wfw:commentRss>
		</item>
		<item>
		<title>http://www.arabyarea.com : Problem when connecting .... </title>
		<link>http://www.arabyarea.com/en/call-to-undefined-function-mssql_connect.htm</link>
		<comments>http://www.arabyarea.com/en/call-to-undefined-function-mssql_connect.htm#comments</comments>
		<pubDate>Sat, 29 May 2010 10:02:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.arabyarea.com/en/?p=6729</guid>
		<description><![CDATA[This message appears when you try to connect to MS SQL Server from PHP, to fix this problem you have to check the following...]]></description>
			<content:encoded><![CDATA[<p><b>fatal error: call to undefined function mssql_connect()</b></p>
<p>This message appears when you try to connect to MS SQL Server from PHP, to fix this problem you have to check the following:</p>
<p>1- check if the file <b>php_mssql.dll</b> exists in &#8220;ext&#8221; folder.</p>
<p>2- Check the file <b>ntwdblib.dll</b> in apache/bin and mysql/bin.</p>
<p>3- Uncomment the extension php_mssql.dll from php.ini if it is commented.</p>
<p>4- Refresh the page.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.arabyarea.com/en/call-to-undefined-function-mssql_connect.htm/feed</wfw:commentRss>
		</item>
		<item>
		<title>http://www.arabyarea.com : Top VOIP programs .... </title>
		<link>http://www.arabyarea.com/en/voip-free-calls-to-phone-and-video-calls.htm</link>
		<comments>http://www.arabyarea.com/en/voip-free-calls-to-phone-and-video-calls.htm#comments</comments>
		<pubDate>Sat, 17 Apr 2010 08:55:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Chat Apps]]></category>

		<guid isPermaLink="false">http://www.arabyarea.com/en/?p=6716</guid>
		<description><![CDATA[VOIP is simply means to make a phone call from your computer, the word VOIP stands for voice over IP...]]></description>
			<content:encoded><![CDATA[<div class="article"></div>
<div class="article"><strong>VOIP </strong>clients (programs) is simply used to make a phone call from your computer, the word <strong>VOIP</strong> stands for <strong>Voice Over Internet Protocol</strong> <strong></strong>, <strong>IP</strong> is the Internet Protocol. Here I will list the top <strong>VOIP</strong> clients (according to my personal use) which you can download it and use it to make a call from your computer. (Note that the list is not ordered in any way).</div>
<ul>
<li><a  rel="nofollow" href="http://www.arabyarea.com/goto/go.php?link=www.skype.com%2Fintl%2Fen%2Fdownload%2Fskype%2Fwindows%2Fdownloading%2F">Skype</a>.</li>
<li><a  rel="nofollow" href="http://www.arabyarea.com/goto/go.php?link=voice.yahoo.com%2F" target="_blank">Yahoo</a>.</li>
<li><a rel="nofollow"  rel="nofollow" href="http://www.arabyarea.com/goto/go.php?link=www.globe7.com%2F" target="_blank">Globe7</a>.</li>
<li><a  rel="nofollow" href="http://www.arabyarea.com/goto/go.php?link=web.net2phone.com%2Fhome_intar.asp">Net2phone</a>.</li>
<li><a rel="nofollow"  rel="nofollow" href="http://www.arabyarea.com/goto/go.php?link=www.viatalk.com%2F" target="_blank">ViaTalk </a></li>
<li><a rel="nofollow"  rel="nofollow" href="http://www.arabyarea.com/goto/go.php?link=www.voip.com%2F" target="_blank">Voip.com</a></li>
<li><a rel="nofollow"  rel="nofollow" href="http://www.arabyarea.com/goto/go.php?link=www.packet8.com%2F" target="_blank">Packet8.com</a></li>
<li><a  rel="nofollow" href="http://www.arabyarea.com/goto/go.php?link=www.brothersoft.com%2Fringo-42099.html">RinGo</a></li>
<li><a  rel="nofollow" href="http://www.arabyarea.com/goto/go.php?link=users.efonica.com%3A10038%2Fwps%2Fportal%2Fproductsandservices%2Fefonicasoftphone">Efonica Softphone</a></li>
<li><a  rel="nofollow" href="http://www.arabyarea.com/goto/go.php?link=www.voipbuster.com%2Fen%2Fdownload.html">VOIP buster </a></li>
</ul>
<p>You can Download <a href="www.arabyarea.com/?p=60">Skype Arabic from here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.arabyarea.com/en/voip-free-calls-to-phone-and-video-calls.htm/feed</wfw:commentRss>
		</item>
		<item>
		<title>http://www.arabyarea.com : How to Crop .... </title>
		<link>http://www.arabyarea.com/en/crop-resize-group-using-photoshop.htm</link>
		<comments>http://www.arabyarea.com/en/crop-resize-group-using-photoshop.htm#comments</comments>
		<pubDate>Tue, 15 Dec 2009 12:09:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Design]]></category>

		<category><![CDATA[How to Crop a Group of Images]]></category>

		<category><![CDATA[resize Group of Images using photoshop]]></category>

		<guid isPermaLink="false">http://www.arabyarea.com/download/?p=4841</guid>
		<description><![CDATA[Sometimes when you want to upload photos on the Web or to send them via email , it is better to scale them down to a smaller size ..]]></description>
			<content:encoded><![CDATA[<p>Sometimes when you want to upload photos to the Web, or to send them via email , it is better to scale them down to a smaller size, so your recipient can load them faster than if it was large scale, and Sometimes  you have a limited memory to store some large number of images so you have to resize them down.</p>
<p>We will now show how to resize a batch of images (group of images), we will use Adobe PhotoShop CS3, follow these steps to do that:</p>
<p>1- Open Adobe PhotoShop CS3 then select File &gt;&gt; Scripts &gt;&gt; Image Processor, as shown below in Figure(1).</p>
<p><div class="wp-caption aligncenter" style="width: 443px"><a href="http://www.arabyarea.com"><img title="Images resize" src="http://img66.imageshack.us/img66/5291/23628538.png" alt="Images resize" width="433" height="476" /></a><p class="wp-caption-text">Figure(1): Adobe PhotoShop File Menu.</p></div></p>
<p>2- The following Window will appear to you called &#8220;Image Processor&#8221;, there is tree steps to follow, the step number (1) is to select the source folder where your images you like to resize, the second step to select the destination where you like to save the scaled images, note that you can check &#8220;Save in Same Location&#8221;, in this case it will replace the source images, the third step is to select the File Type and width (W) and Height (H), after that press the button Run to do the process.</p>
<p> </p>
<p><div class="wp-caption aligncenter" style="width: 441px"><a href="http://www.arabyarea.com"><img title="Images resize" src="http://img687.imageshack.us/img687/6651/94763440.png" alt="Images resize" width="431" height="467" /></a><p class="wp-caption-text">Figure(2): Image Processor window </p></div></p>
]]></content:encoded>
			<wfw:commentRss>http://www.arabyarea.com/en/crop-resize-group-using-photoshop.htm/feed</wfw:commentRss>
		</item>
		<item>
		<title>http://www.arabyarea.com : mysql CHAR_LENGTH(str) .... </title>
		<link>http://www.arabyarea.com/en/mysql-char_lengthstr-function.htm</link>
		<comments>http://www.arabyarea.com/en/mysql-char_lengthstr-function.htm#comments</comments>
		<pubDate>Wed, 09 Dec 2009 21:06:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Mysql DB]]></category>

		<guid isPermaLink="false">http://www.arabyarea.com/download/?p=1277</guid>
		<description><![CDATA[CHAR_LENGTH(str) function Returns the length of the string str, measured in characters. A multi-byte character counts as a single character]]></description>
			<content:encoded><![CDATA[<p><strong>CHAR_LENGTH(str)</strong> function Returns the length of the string <em class="replaceable"><code>str</code></em>, measured in characters. A multi-byte character counts as a single character.</p>
<p>Example</p>
<p>SELECT <strong>CHAR_LENGTH(Name)</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.arabyarea.com/en/mysql-char_lengthstr-function.htm/feed</wfw:commentRss>
		</item>
		<item>
		<title>http://www.arabyarea.com : Download Kaspersky antivirus .... </title>
		<link>http://www.arabyarea.com/en/download-kaspersky-antivirus.htm</link>
		<comments>http://www.arabyarea.com/en/download-kaspersky-antivirus.htm#comments</comments>
		<pubDate>Fri, 23 Oct 2009 18:27:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Security]]></category>

		<category><![CDATA[antivirus]]></category>

		<guid isPermaLink="false">http://www.arabyarea.com/download/?p=1285</guid>
		<description><![CDATA[Kaspersky antivirus is one of the most popular antivirus software in all over the world from  Kaspersky Lab, by this software your computer will be clean from viruses...]]></description>
			<content:encoded><![CDATA[<p>Kaspersky Anti-Virus 2010 Application was created to give your PC a professional security and to protect you from threats.</p>
<p>Some Key Features for Kaspersky Anti-Virus 2010:</p>
<ul>
<li>Protects your PC from viruses, Trojans, worms, spyware and adware.</li>
<li>Scans your files and email messages.</li>
<li>Scans and Fix Internet Explorer vulnerabilities.</li>
<li>Threat monitoring.</li>
<li>Blocks malware sites.</li>
<li>Blocks phishing websites.</li>
<li>Blocks keyloggers.</li>
<li>Creating a rescue disk.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.arabyarea.com/en/download-kaspersky-antivirus.htm/feed</wfw:commentRss>
		</item>
		<item>
		<title>http://www.arabyarea.com : SWF to EXE .... </title>
		<link>http://www.arabyarea.com/en/swf-exe.htm</link>
		<comments>http://www.arabyarea.com/en/swf-exe.htm#comments</comments>
		<pubDate>Sat, 08 Aug 2009 22:44:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Converters]]></category>

		<category><![CDATA[SWF to EXE converter]]></category>

		<guid isPermaLink="false">http://www.arabyarea.com/download/?p=554</guid>
		<description><![CDATA[SWF files needs to adobe Flash Player to run on any computer!, the question is How can I run it without need to Flash Player?...]]></description>
			<content:encoded><![CDATA[<ul>
<li><span style="color: #008000;">Author</span>: AMX</li>
<li><span style="color: #008000;">Download Size</span> : 1834 KBSWF files needs to adobe Flash Player to run on any computer!, the question is How can I run it without need to Flash Player?</li>
</ul>
<p>The answer is by &#8216;SWF to EXE&#8217; you can download your SWF files to standalone EXE files that run by themselves.</p>
<p>To download &#8216;SWF to EXE&#8217;  and convert your SWF to EXE you have to click the download link below to run your download manager and then installing it on your machine for daily use</p>
<p>Download link: <a  rel="nofollow" href="http://www.arabyarea.com/goto/go.php?link=eurotest.chat.ru%2Ffi%2Fswftoexe.zip">http://eurotest.chat.ru/fi/swftoexe.zip</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.arabyarea.com/en/swf-exe.htm/feed</wfw:commentRss>
		</item>
		<item>
		<title>http://www.arabyarea.com : mysql CONCAT(str1,str2,&#8230;) .... </title>
		<link>http://www.arabyarea.com/en/mysql-concatenating.htm</link>
		<comments>http://www.arabyarea.com/en/mysql-concatenating.htm#comments</comments>
		<pubDate>Thu, 09 Jul 2009 21:09:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Mysql DB]]></category>

		<guid isPermaLink="false">http://www.arabyarea.com/download/?p=1279</guid>
		<description><![CDATA[Returns the string that results from concatenating the arguments to gother. May have one or more arguments...]]></description>
			<content:encoded><![CDATA[<p><strong>CONCAT(str1,str2,&#8230;)</strong></p>
<p>Returns the string that results from concatenating the arguments to gother. May have one or more arguments.</p>
<p>Example:</p>
<p><strong>SELECT CONCAT(&#8217;FA&#8217;, &#8216;KH&#8217;, &#8216;RI&#8217;);</strong></p>
<p><strong>output &gt;&gt; FAKHRI</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.arabyarea.com/en/mysql-concatenating.htm/feed</wfw:commentRss>
		</item>
		<item>
		<title>http://www.arabyarea.com : mysql ASCII function .... </title>
		<link>http://www.arabyarea.com/en/ascii.htm</link>
		<comments>http://www.arabyarea.com/en/ascii.htm#comments</comments>
		<pubDate>Sun, 24 May 2009 20:22:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Mysql DB]]></category>

		<category><![CDATA[mysql ASCII function]]></category>

		<guid isPermaLink="false">http://www.arabyarea.com/download/?p=621</guid>
		<description><![CDATA[mysql ASCII function keyword is used to return the numeric value of the leftmost character of the string ...]]></description>
			<content:encoded><![CDATA[<p>mysql ASCII function keyword is used to return the numeric value of the leftmost character of the string &#8217;str&#8217;. Returns 0 if &#8217;str&#8217; is the empty string and  returns NULL if str is NULL.</p>
<p>Note that ASCII() works for 8-bit characters.</p>
<p>Example:</p>
<p>1- SELECT ASCII(&#8217;1&#8242;);<br />
   &gt;&gt; 49</p>
<p>2- SELECT ASCII(field) FROM table WHERE 1</p>
]]></content:encoded>
			<wfw:commentRss>http://www.arabyarea.com/en/ascii.htm/feed</wfw:commentRss>
		</item>
	</channel>
</rss>

