<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:series="http://unfoldingneurons.com/"
	>

<channel>
	<title>Web Design Tutorials &#187; phpBB Tutorials</title>
	<atom:link href="http://bestwebdesignz.com/tips/category/phpbb-tutorials/feed/" rel="self" type="application/rss+xml" />
	<link>http://bestwebdesignz.com/tips</link>
	<description></description>
	<lastBuildDate>Wed, 25 Jan 2012 07:56:39 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Contact PHP forms in Yahoo Smallbusiness Server</title>
		<link>http://bestwebdesignz.com/tips/phpbb-tutorials/contact-php-forms-in-yahoo-smallbusiness-server/</link>
		<comments>http://bestwebdesignz.com/tips/phpbb-tutorials/contact-php-forms-in-yahoo-smallbusiness-server/#comments</comments>
		<pubDate>Wed, 25 Jan 2012 07:14:51 +0000</pubDate>
		<dc:creator>clement</dc:creator>
				<category><![CDATA[phpBB Tutorials]]></category>

		<guid isPermaLink="false">http://bestwebdesignz.com/tips/?p=2783</guid>
		<description><![CDATA[If  you are wondering why the regular PHP forms does not respond in Yahoo Smallbusiness server, we have another set of PHP codes to resolve all issues in Yahoo Small Business server. First let us create an html file called contact.html in dreamweaver, with 4 fields ie: Name, Email, Phone &#38; Message as  shown below: [...]]]></description>
			<content:encoded><![CDATA[<p>If  you are wondering why the regular PHP forms does not respond in Yahoo Smallbusiness server, we have another set of PHP codes to resolve all issues in Yahoo Small Business server.</p>
<p>First let us create an html file called contact.html in dreamweaver, with 4 fields ie: Name, Email, Phone &amp; Message as  shown below:</p>
<p><img class="alignnone size-full wp-image-2784" title="contacts" src="http://bestwebdesignz.com/tips/wp-content/uploads/2012/01/contacts.png" alt="Contact PHP forms in Yahoo Smallbusiness Server" width="255" height="248" /></p>
<p>click on the form tag at the bottom of the contacts.html and link it to contacts-thanks.php and to be opened in a new window as shown below:</p>
<p><img class="alignnone size-full wp-image-2785" title="contacts-footer" src="http://bestwebdesignz.com/tips/wp-content/uploads/2012/01/contacts-footer.png" alt="Contact PHP forms in Yahoo Smallbusiness Server" width="665" height="186" /></p>
<p>At this point you may not have a contacts-thanks.php with you, but remember to do this when you make your contacts-thanks.php</p>
<p>Now open another php document in Dreamweaver and copy the below codes:</p>
<p>Thankyou! We will get back to you soon.<br />
&lt;body&gt;<br />
&lt;?php<br />
/* Set e-mail recipient */<br />
$myemail  = &#8220;clement@bestwebdesignz.com&#8221;;</p>
<p>/* Check all form inputs using check_input function */<br />
$name = check_input($_POST['name']);<br />
$email  = check_input($_POST['email'], &#8220;Write a subject&#8221;);<br />
$phone    = check_input($_POST['phone']);<br />
$msg  = check_input($_POST['msg']);</p>
<p>/* If e-mail is not valid show error message */<br />
/*if (!preg_match(&#8220;/([\w\-]+\@[\w\-]+\.[\w\-]+)/&#8221;, $email))<br />
{<br />
show_error(&#8220;E-mail address not valid&#8221;);<br />
}*/</p>
<p>/* If URL is not valid set $website to empty */<br />
if (!preg_match(&#8220;/^(https?:\/\/+[\w\-]+\.[\w\-]+)/i&#8221;, $website))<br />
{<br />
$website = &#8221;;<br />
}</p>
<p>/* Let&#8217;s prepare the message for the e-mail */<br />
$message = &#8220;Hello! Clement &#8211; Bestwebdesignz.</p>
<p>Your contact form has been submitted by:</p>
<p>Name: $name<br />
E-mail: $email<br />
Phone: $phone<br />
Message: $msg</p>
<p>End of message<br />
&#8220;;</p>
<p>/* Send the message using mail() function */<br />
mail($myemail, $name, $message);</p>
<p>/* Functions we used */<br />
function check_input($data, $problem=&#8221;)<br />
{<br />
$data = trim($data);<br />
$data = stripslashes($data);<br />
$data = htmlspecialchars($data);<br />
if ($problem &amp;&amp; strlen($data) == 0)<br />
{<br />
show_error($problem);<br />
}<br />
return $data;<br />
}</p>
<p>function show_error($myError)<br />
{<br />
?&gt;<br />
&lt;html&gt;<br />
&lt;body&gt;</p>
<p>&lt;b&gt;Please correct the following error:&lt;/b&gt;&lt;br /&gt;<br />
&lt;?php echo $myError; ?&gt;</p>
<p>&lt;/body&gt;<br />
&lt;/html&gt;<br />
&lt;?php<br />
exit();<br />
}<br />
?&gt;</p>
<p>&lt;/body&gt;</p>
<p>Put in the thankyou message on top of the &lt;body&gt; tag or just below the &lt;head&gt; tag, as you can see in the above code, where it says &#8220;Thankyou! We will get back to you soon.&#8221;</p>
<p>Change the email id in the above code where it says &#8220;clement@bestwebdesignz.com&#8221; with your email id.</p>
<p>Now save this code in your contacts-thanks.php</p>
<p><strong>Important Note:</strong> Make sure the fields in the contact form ie: TextField are the same defined in your contacts-thanks.php, for example the first field in the contact form which reads Name: is defined as &#8220;name&#8221; in the TextField, similarly the &#8220;name&#8221; is pulled up in the contact-thanks.php codes as in line 7th and 21st lines as evident above.</p>
<p>Also make sure that the contact form in your contacts.html is tagged with your contacts-thanks.php in the action section and opens in a new window, as explained above in point 2.</p>
<p>Upload both your files ie: contacts.html and contacts-thanks.php to the root directory of your Yahoo small business server using FileZilla.</p>
<p>Once the two files above are uploaded you can go to your browser and check your site, in this case, it will be http://bestwebdesignz.com/contacts.html</p>
<p>Fill in the contact form and click on the submit button.</p>
<p>Now check your mails as defined in your php codes, you can wait for a couple of minutes to see it coming, or check your spam folders etc.,</p>
<p>That&#8217;s it, you now know how to use yur contact PHP forms in Yahoo Small Business Server.</p>
<script type="text/javascript"><!--
                    google_ad_client = "pub-7099335855422733";
                    google_ad_slot = "4729128935";
                    google_ad_width = 336;
                    google_ad_height = 280;
                    //-->
                    </script>
                    <script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
        </script>
                    ]]></content:encoded>
			<wfw:commentRss>http://bestwebdesignz.com/tips/phpbb-tutorials/contact-php-forms-in-yahoo-smallbusiness-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<series:name><![CDATA[phpBB Tutorials]]></series:name>
	</item>
		<item>
		<title>PHP code for Contact form</title>
		<link>http://bestwebdesignz.com/tips/phpbb-tutorials/php-code-for-contact-form/</link>
		<comments>http://bestwebdesignz.com/tips/phpbb-tutorials/php-code-for-contact-form/#comments</comments>
		<pubDate>Tue, 24 Jan 2012 06:11:30 +0000</pubDate>
		<dc:creator>clement</dc:creator>
				<category><![CDATA[phpBB Tutorials]]></category>

		<guid isPermaLink="false">http://bestwebdesignz.com/tips/?p=2777</guid>
		<description><![CDATA[If you have a contact form and wondering how to redirect the contact form to be redirected to your mail id, you can follow the below steps to send all your contact form details to your mail id. Fist let us create a php folder called thankyou.php or you can do this later too, you [...]]]></description>
			<content:encoded><![CDATA[<p>If you have a contact form and wondering how to redirect the contact form to be redirected to your mail id, you can follow the below steps to send all your contact form details to your mail id.</p>
<p>Fist let us create a php folder called thankyou.php or you can do this later too, you can open dreamweaver and within the &lt;body&gt; tag of your code copy and paste the below php codes.</p>
<p>&lt;?php<br />
echo $name.&#8221;.  We will get back to you soon.&#8221;;<br />
$name=$_REQUEST['name'] ;<br />
$email=$_REQUEST['e-mail'];<br />
$phone=$_REQUEST['phone'];<br />
$msg=$_REQUEST['message'];</p>
<p>$Message = &#8221; Form Details \n\n&#8221;;<br />
$Message .= &#8221; Name : $name \n&#8221;;<br />
$Message .= &#8221; E-mail : $email \n&#8221;;<br />
$Message .= &#8221; Phone : $phone \n&#8221;;<br />
$Message .= &#8221; Message : $msg \n&#8221;;</p>
<p>mail(&#8220;clement@bestwebdesignz.com&#8221;, &#8220;Website Visitors&#8221;, $Message , &#8220;From: $email\n&#8221;);<br />
?&gt;</p>
<p>You can change the mail id where it says, &#8220;clement@bestwebdesignz.com&#8221; to your mail id, now you can save the file in dreamweaver as thankyou.php</p>
<p>With the above step being completed, you have a file called thankyou.php.</p>
<p>2. While you open your contact.html page, you will see in the design part, the form which has the fields above:</p>
<p><img class="alignnone size-full wp-image-2778" title="contactform" src="http://bestwebdesignz.com/tips/wp-content/uploads/2012/01/contactform.png" alt="PHP code for Contact form" width="246" height="155" /></p>
<p>while you click on each field inside, and check the code, you should have the same name as in the form, for example, when you click inside the Name: box of your contact form in your contact.html, the TextField must say &#8220;name&#8221; as described in your thankyou.php form, also check for all the 4 field names here.</p>
<p>After you do this, you must tag your form to your thankyou.php file and how to do this, you can see the below image and explaination:</p>
<p><img class="alignnone size-full wp-image-2779" title="contactfooter" src="http://bestwebdesignz.com/tips/wp-content/uploads/2012/01/contactfooter.png" alt="PHP code for Contact form" width="584" height="153" /></p>
<p>click on the &lt;form#form6&gt; at the footer of  your dreamweaver and in the action part where I have circled in red you must click on the yellow folder besides that and tag your form with the thankyou.php and also select the target as _blank, now save your files and upload them to your server.</p>
<p>Go to the contact page in your browser ie: http://bestwebdesignz.com/contact.html and put in your name, email, phone and message there and submit the form, you should receive the details filled in the contact form to your mail id as mentioned in the php code.</p>
<p>That&#8217;s it, you now know how to write a PHP code for a Contact form.</p>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 935px; width: 1px; height: 1px; overflow: hidden;"><img src="data:image/png;base64,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" alt="PHP code for Contact form"  title="Php Code For Contact Form Photo" /></div>
<script type="text/javascript"><!--
                    google_ad_client = "pub-7099335855422733";
                    google_ad_slot = "4729128935";
                    google_ad_width = 336;
                    google_ad_height = 280;
                    //-->
                    </script>
                    <script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
        </script>
                    ]]></content:encoded>
			<wfw:commentRss>http://bestwebdesignz.com/tips/phpbb-tutorials/php-code-for-contact-form/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<series:name><![CDATA[phpBB Tutorials]]></series:name>
	</item>
		<item>
		<title>How to know if your hosting supports PHP</title>
		<link>http://bestwebdesignz.com/tips/phpbb-tutorials/how-to-know-if-your-hosting-supports-php/</link>
		<comments>http://bestwebdesignz.com/tips/phpbb-tutorials/how-to-know-if-your-hosting-supports-php/#comments</comments>
		<pubDate>Tue, 24 Jan 2012 05:33:25 +0000</pubDate>
		<dc:creator>clement</dc:creator>
				<category><![CDATA[phpBB Tutorials]]></category>

		<guid isPermaLink="false">http://bestwebdesignz.com/tips/?p=2773</guid>
		<description><![CDATA[If you have contact forms or any other forms in php and wondering if your hosting supports PHP, you can follow the below steps to know if your hosting supports PHP. 1. Open dreamweaver and go to the code page and copy and past the below php codes within the &#60;body&#62; tag as shown below. [...]]]></description>
			<content:encoded><![CDATA[<p>If you have contact forms or any other forms in php and wondering if your hosting supports PHP, you can follow the below steps to know if your hosting supports PHP.</p>
<p>1. Open dreamweaver and go to the code page and copy and past the below php codes within the &lt;body&gt; tag as shown below.</p>
<p>&lt;body&gt;</p>
<p>&lt;?php<br />
mail(&#8216;clement@bestwebdesignz.com&#8217;,'Test mail&#8217;,'The mail function is working!&#8217;);<br />
echo &#8216;Mail sent!&#8217;;<br />
?&gt;</p>
<p>&lt;/body&gt;</p>
<p>2. Put in your mail id where it says &#8216;clement@bestwebdesignz.com&#8217; in the code above.</p>
<p>3. Save the file as mailtest.php and upload it to your server using your FTP.</p>
<p>4. Go to your URL or domain name, in this case http://bestwebdesignz.com/ and add your php file name along with it, ie: http://bestwebdesignz.com/mailtest.php/ (since I have uploaded mailtest.php in the root directory ie: public_html folder.</p>
<p>5. Now check your mail and see if you received your mail, you can wait for a while too, check your spam folders too.</p>
<p>If you have received the mail which says &#8220;The mail function is working&#8221; then you know that your hosting supports PHP,  if not your hosting does not support PHP.</p>
<p>That&#8217;s it, you now know how to know if your hosting supports PHP.</p>
<script type="text/javascript"><!--
                    google_ad_client = "pub-7099335855422733";
                    google_ad_slot = "4729128935";
                    google_ad_width = 336;
                    google_ad_height = 280;
                    //-->
                    </script>
                    <script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
        </script>
                    ]]></content:encoded>
			<wfw:commentRss>http://bestwebdesignz.com/tips/phpbb-tutorials/how-to-know-if-your-hosting-supports-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<series:name><![CDATA[phpBB Tutorials]]></series:name>
	</item>
		<item>
		<title>How to manage user permissions in phpBB</title>
		<link>http://bestwebdesignz.com/tips/phpbb-tutorials/how-to-manage-user-permissions-in-phpbb/</link>
		<comments>http://bestwebdesignz.com/tips/phpbb-tutorials/how-to-manage-user-permissions-in-phpbb/#comments</comments>
		<pubDate>Mon, 03 Aug 2009 07:21:43 +0000</pubDate>
		<dc:creator>clement</dc:creator>
				<category><![CDATA[phpBB Tutorials]]></category>
		<category><![CDATA[How to manage user permissions in phpBB]]></category>

		<guid isPermaLink="false">http://bestwebdesignz.com/tips/?p=1564</guid>
		<description><![CDATA[How to manage user permissions in phpBB Assuming you have already logged into phpBB. Click on the Permissions link found on the main menu. Then click on the Users’ permissions link found on the left side of your screen, under Global Permissions. Enter the name of the user in the screen that shows and click [...]]]></description>
			<content:encoded><![CDATA[<p>How to manage user permissions in phpBB</p>
<p>Assuming you have already logged into phpBB. Click on the Permissions link found on the main menu.<br />
<img class="alignnone size-full wp-image-1565" title="How to manage user permissions in phpBB" src="http://bestwebdesignz.com/tips/wp-content/uploads/2009/08/image0016.jpg" alt="How to manage user permissions in phpBB" width="532" height="113" /><br />
Then click on the Users’ permissions link found on the left side of your screen, under Global Permissions.<br />
<img class="alignnone size-full wp-image-1566" title="How to manage user permissions in phpBB" src="http://bestwebdesignz.com/tips/wp-content/uploads/2009/08/image0024.jpg" alt="How to manage user permissions in phpBB" width="221" height="144" /><br />
Enter the name of the user in the screen that shows and click on the submit button, then assign a role for the user and then click on the apply all permissions button. That’s it, the user’s permissions have been adjusted. We can return to this page at any point of time and adjust the permissions of any users.<br />
That’s it, you now know how to manage user permissions in phpBB</p>
<script type="text/javascript"><!--
                    google_ad_client = "pub-7099335855422733";
                    google_ad_slot = "4729128935";
                    google_ad_width = 336;
                    google_ad_height = 280;
                    //-->
                    </script>
                    <script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
        </script>
                    ]]></content:encoded>
			<wfw:commentRss>http://bestwebdesignz.com/tips/phpbb-tutorials/how-to-manage-user-permissions-in-phpbb/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<series:name><![CDATA[phpBB Tutorials]]></series:name>
	</item>
		<item>
		<title>How to manage styles in phpBB</title>
		<link>http://bestwebdesignz.com/tips/phpbb-tutorials/how-to-manage-styles-in-phpbb/</link>
		<comments>http://bestwebdesignz.com/tips/phpbb-tutorials/how-to-manage-styles-in-phpbb/#comments</comments>
		<pubDate>Mon, 03 Aug 2009 06:50:58 +0000</pubDate>
		<dc:creator>clement</dc:creator>
				<category><![CDATA[phpBB Tutorials]]></category>
		<category><![CDATA[How to manage styles in phpBB]]></category>

		<guid isPermaLink="false">http://bestwebdesignz.com/tips/?p=1558</guid>
		<description><![CDATA[How to manage styles in phpBB Assuming you have already logged into phpBB. Click on the Styles link found on the main menu. We can edit the look of the phpBB from this page. Let us look at the different options available. Click Themes link found on the left side of your screen under style [...]]]></description>
			<content:encoded><![CDATA[<p>How to manage styles in phpBB</p>
<p>Assuming you have already logged into phpBB. Click on the Styles link found on the main menu.<br />
<img class="alignnone size-full wp-image-1559" title="How to manage styles in phpBB" src="http://bestwebdesignz.com/tips/wp-content/uploads/2009/08/image0015.jpg" alt="How to manage styles in phpBB" width="455" height="83" /><br />
We can edit the look of the phpBB from this page. Let us look at the different options available.<br />
Click Themes link found on the left side of your screen under style components.<br />
<img class="alignnone size-full wp-image-1560" title="How to manage styles in phpBB" src="http://bestwebdesignz.com/tips/wp-content/uploads/2009/08/image0023.jpg" alt="How to manage styles in phpBB" width="189" height="187" /><br />
It is on this page that you can install, edit and delete themes. Themes are a combination of colors, images and styles that make up the look and feel of the forums.<br />
Now click on Imagesets which is found below themes link as shown above.<br />
It is on this page that you can view and modify our image sets. This includes all images and buttons used on this site.<br />
Click styles link found under the style management.<br />
Styles consists of a combination of a theme and image set. It is on this page that you can activate edit and delete your styles.<br />
Let us activate a new style now.<br />
<img class="alignnone size-full wp-image-1561" title="How to manage styles in phpBB" src="http://bestwebdesignz.com/tips/wp-content/uploads/2009/08/image0032.jpg" alt="How to manage styles in phpBB" width="537" height="117" /><br />
Click on the activate link as shown above.<br />
The new style has been activated and is now available for selection by the users<br />
You now know how to manage styles in phpBB</p>
<script type="text/javascript"><!--
                    google_ad_client = "pub-7099335855422733";
                    google_ad_slot = "4729128935";
                    google_ad_width = 336;
                    google_ad_height = 280;
                    //-->
                    </script>
                    <script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
        </script>
                    ]]></content:encoded>
			<wfw:commentRss>http://bestwebdesignz.com/tips/phpbb-tutorials/how-to-manage-styles-in-phpbb/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<series:name><![CDATA[phpBB Tutorials]]></series:name>
	</item>
		<item>
		<title>How to manage smilies in phpBB</title>
		<link>http://bestwebdesignz.com/tips/phpbb-tutorials/how-to-manage-smilies-in-phpbb/</link>
		<comments>http://bestwebdesignz.com/tips/phpbb-tutorials/how-to-manage-smilies-in-phpbb/#comments</comments>
		<pubDate>Mon, 03 Aug 2009 06:19:36 +0000</pubDate>
		<dc:creator>clement</dc:creator>
				<category><![CDATA[phpBB Tutorials]]></category>
		<category><![CDATA[How to manage smilies in phpBB]]></category>

		<guid isPermaLink="false">http://bestwebdesignz.com/tips/?p=1550</guid>
		<description><![CDATA[How to manage smilies in phpBB Smilies or emoticons as they are sometimes referred to, are small images you can insert into your posts to further express your feelings or thoughts. Assuming you have already logged into phpBB. Click on posting link found on the main menu. Then click on smilies link found on the [...]]]></description>
			<content:encoded><![CDATA[<p>How to manage smilies in phpBB</p>
<p>Smilies or emoticons as they are sometimes referred to, are small images you can insert into your posts to further express your feelings or thoughts.</p>
<p>Assuming you have already logged into phpBB. Click on posting link found on the main menu.<br />
<img class="alignnone size-full wp-image-1554" title="How to manage smilies in phpBB" src="http://bestwebdesignz.com/tips/wp-content/uploads/2009/08/image0014.jpg" alt="How to manage smilies in phpBB" width="299" height="124" /><br />
Then click on smilies link found on the left side of your menu card under messages.<br />
<img class="alignnone size-full wp-image-1555" title="How to manage smilies in phpBB" src="http://bestwebdesignz.com/tips/wp-content/uploads/2009/08/image0022.jpg" alt="How to manage smilies in phpBB" width="227" height="168" /><br />
A list of available smilies will be listed on your screen.<br />
<img class="alignnone size-full wp-image-1553" title="How to manage smilies in phpBB" src="http://bestwebdesignz.com/tips/wp-content/uploads/2009/08/image0031.jpg" alt="How to manage smilies in phpBB" width="131" height="39" /><br />
To edit a smilie click on the green icon as shown above, change the name of the emotion for the smilie and click on the submit button.<br />
To delete a smilie click on the red icon as shown above, press the YES button to confirm.<br />
You now know how to manage smilies in phpBB</p>
<script type="text/javascript"><!--
                    google_ad_client = "pub-7099335855422733";
                    google_ad_slot = "4729128935";
                    google_ad_width = 336;
                    google_ad_height = 280;
                    //-->
                    </script>
                    <script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
        </script>
                    ]]></content:encoded>
			<wfw:commentRss>http://bestwebdesignz.com/tips/phpbb-tutorials/how-to-manage-smilies-in-phpbb/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<series:name><![CDATA[phpBB Tutorials]]></series:name>
	</item>
		<item>
		<title>How to use the search tool in phpBB</title>
		<link>http://bestwebdesignz.com/tips/phpbb-tutorials/how-to-use-the-search-tool-in-phpbb/</link>
		<comments>http://bestwebdesignz.com/tips/phpbb-tutorials/how-to-use-the-search-tool-in-phpbb/#comments</comments>
		<pubDate>Mon, 03 Aug 2009 05:43:32 +0000</pubDate>
		<dc:creator>clement</dc:creator>
				<category><![CDATA[phpBB Tutorials]]></category>
		<category><![CDATA[How to use the search tool in phpBB]]></category>

		<guid isPermaLink="false">http://bestwebdesignz.com/tips/?p=1546</guid>
		<description><![CDATA[How to use the search tool in phpBB Assuming you have already logged into phpBB. We can search for a keyword in the search box found on the right top side of your screen or you can even use the advanced search. Click on the Advanced search and enter the keywords you would like to [...]]]></description>
			<content:encoded><![CDATA[<p>How to use the search tool in phpBB</p>
<p>Assuming you have already logged into phpBB. We can search for a keyword in the search box found on the right top side of your screen or you can even use the advanced search.<br />
<img class="alignnone size-full wp-image-1547" title="How to use the search tool in phpBB" src="http://bestwebdesignz.com/tips/wp-content/uploads/2009/08/image0012.jpg" alt="How to use the search tool in phpBB" width="261" height="77" /><br />
Click on the Advanced search and enter the keywords you would like to search the forum for, select the forum(s) to search in, when ready click the search button.<br />
That’s it, you will see that the search results are displayed, you can click on any post to be taken to its thread.<br />
You now know how to use the search tool in phpBB</p>
<script type="text/javascript"><!--
                    google_ad_client = "pub-7099335855422733";
                    google_ad_slot = "4729128935";
                    google_ad_width = 336;
                    google_ad_height = 280;
                    //-->
                    </script>
                    <script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
        </script>
                    ]]></content:encoded>
			<wfw:commentRss>http://bestwebdesignz.com/tips/phpbb-tutorials/how-to-use-the-search-tool-in-phpbb/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<series:name><![CDATA[phpBB Tutorials]]></series:name>
	</item>
		<item>
		<title>How to reply to an existing topic in phpBB.</title>
		<link>http://bestwebdesignz.com/tips/phpbb-tutorials/how-to-reply-to-an-existing-topic-in-phpbb/</link>
		<comments>http://bestwebdesignz.com/tips/phpbb-tutorials/how-to-reply-to-an-existing-topic-in-phpbb/#comments</comments>
		<pubDate>Mon, 03 Aug 2009 05:22:01 +0000</pubDate>
		<dc:creator>clement</dc:creator>
				<category><![CDATA[phpBB Tutorials]]></category>
		<category><![CDATA[How to reply to an existing topic in phpBB.]]></category>

		<guid isPermaLink="false">http://bestwebdesignz.com/tips/?p=1539</guid>
		<description><![CDATA[How to reply to an existing topic in phpBB. Assuming you have already logged into phpBB. Click on Your first forum link found on your screen. Click on the forum in which you want to reply to a topic, then choose a topic you want to reply to as shown below. Click on the post [...]]]></description>
			<content:encoded><![CDATA[<p>How to reply to an existing topic in phpBB.</p>
<p>Assuming you have already logged into phpBB. Click on Your first forum link found on your screen.<br />
<img class="alignnone size-full wp-image-1540" title="How to reply to an existing topic in phpBB." src="http://bestwebdesignz.com/tips/wp-content/uploads/2009/08/image0011.jpg" alt="How to reply to an existing topic in phpBB." width="308" height="88" /><br />
Click on the forum in which you want to reply to a topic, then choose a topic you want to reply to as shown below.<br />
<img class="alignnone size-full wp-image-1541" title="How to reply to an existing topic in phpBB." src="http://bestwebdesignz.com/tips/wp-content/uploads/2009/08/image002.jpg" alt="How to reply to an existing topic in phpBB." width="365" height="148" /><br />
Click on the post reply link<br />
<img class="alignnone size-full wp-image-1542" title="How to reply to an existing topic in phpBB." src="http://bestwebdesignz.com/tips/wp-content/uploads/2009/08/image003.jpg" alt="How to reply to an existing topic in phpBB." width="141" height="44" /><br />
A subject is optional for a reply, but can be entered if you wish, the enter the reply and click on the submit button.<br />
Now take a look by click on the view your submitted message. You will be able to see the reply you added.<br />
That’s it, you now know how to reply to an existing topic in phpBB.</p>
<script type="text/javascript"><!--
                    google_ad_client = "pub-7099335855422733";
                    google_ad_slot = "4729128935";
                    google_ad_width = 336;
                    google_ad_height = 280;
                    //-->
                    </script>
                    <script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
        </script>
                    ]]></content:encoded>
			<wfw:commentRss>http://bestwebdesignz.com/tips/phpbb-tutorials/how-to-reply-to-an-existing-topic-in-phpbb/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<series:name><![CDATA[phpBB Tutorials]]></series:name>
	</item>
		<item>
		<title>How to register as a user in phpBB</title>
		<link>http://bestwebdesignz.com/tips/phpbb-tutorials/how-to-register-as-a-user-in-phpbb/</link>
		<comments>http://bestwebdesignz.com/tips/phpbb-tutorials/how-to-register-as-a-user-in-phpbb/#comments</comments>
		<pubDate>Mon, 03 Aug 2009 05:05:05 +0000</pubDate>
		<dc:creator>clement</dc:creator>
				<category><![CDATA[phpBB Tutorials]]></category>
		<category><![CDATA[How to register as a user in phpBB]]></category>

		<guid isPermaLink="false">http://bestwebdesignz.com/tips/?p=1534</guid>
		<description><![CDATA[How to register as a user in phpBB Assuming you have already logged into phpBB. Click on the Register link found on the extreme right of your screen. Read the Registration Agreement Terms, once you have read through it and agree to the terms, click on the I agree to these terms  A Registration Form [...]]]></description>
			<content:encoded><![CDATA[<p>How to register as a user in phpBB</p>
<p>Assuming you have already logged into phpBB. Click on the Register link found on the extreme right of your screen.<br />
<img class="alignnone size-full wp-image-1535" title="How to register as a user in phpBB" src="http://bestwebdesignz.com/tips/wp-content/uploads/2009/08/image001.jpg" alt="How to register as a user in phpBB" width="224" height="40" /><br />
Read the Registration Agreement Terms, once you have read through it and agree to the terms, click on the I agree to these terms  A Registration Form screen will show up.<br />
Complete the Registration form and click on the submit button.<br />
That’s it, the account has been created and you can login with your new user name and password.<br />
You now know how to register as a user in phpBB</p>
<script type="text/javascript"><!--
                    google_ad_client = "pub-7099335855422733";
                    google_ad_slot = "4729128935";
                    google_ad_width = 336;
                    google_ad_height = 280;
                    //-->
                    </script>
                    <script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
        </script>
                    ]]></content:encoded>
			<wfw:commentRss>http://bestwebdesignz.com/tips/phpbb-tutorials/how-to-register-as-a-user-in-phpbb/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<series:name><![CDATA[phpBB Tutorials]]></series:name>
	</item>
		<item>
		<title>How to manage ranks in phpBB</title>
		<link>http://bestwebdesignz.com/tips/phpbb-tutorials/how-to-manage-ranks-in-phpbb/</link>
		<comments>http://bestwebdesignz.com/tips/phpbb-tutorials/how-to-manage-ranks-in-phpbb/#comments</comments>
		<pubDate>Mon, 27 Jul 2009 05:50:09 +0000</pubDate>
		<dc:creator>clement</dc:creator>
				<category><![CDATA[phpBB Tutorials]]></category>
		<category><![CDATA[How to manage ranks in phpBB]]></category>

		<guid isPermaLink="false">http://bestwebdesignz.com/tips/?p=1524</guid>
		<description><![CDATA[How to manage ranks in phpBB Assuming you have already logged into phpBB. Click on the users and groups link found on the main menu. Then click on the manage ranks link found on the left side of your screen, under Users. It is from this page that you will be able to add ranks [...]]]></description>
			<content:encoded><![CDATA[<p>How to manage ranks in phpBB</p>
<p>Assuming you have already logged into phpBB. Click on the users and groups link found on the main menu.<br />
<img class="alignnone size-full wp-image-1525" title="How to manage ranks in phpBB" src="http://bestwebdesignz.com/tips/wp-content/uploads/2009/07/image00214.jpg" alt="How to manage ranks in phpBB" width="465" height="119" /><br />
Then click on the manage ranks link found on the left side of your screen, under Users.<br />
<img class="alignnone size-full wp-image-1526" title="How to manage ranks in phpBB" src="http://bestwebdesignz.com/tips/wp-content/uploads/2009/07/image00329.png" alt="How to manage ranks in phpBB" width="169" height="145" /><br />
It is from this page that you will be able to add ranks that will then automatically be given to people as they reach the specified post milestones<br />
<img class="alignnone size-full wp-image-1527" title="How to manage ranks in phpBB" src="http://bestwebdesignz.com/tips/wp-content/uploads/2009/07/image00531.png" alt="How to manage ranks in phpBB" width="509" height="59" /><br />
Now click on add new rank button.<br />
<img class="alignnone size-full wp-image-1528" title="How to manage ranks in phpBB" src="http://bestwebdesignz.com/tips/wp-content/uploads/2009/07/image00724.png" alt="How to manage ranks in phpBB" width="324" height="165" /><br />
Enter a rank title, select NO at set as special rank since this won’t be a special rank, then click on submit button.<br />
You will see for yourself that a new rank has been added, to delete a rank just click on the red icon shown above, to edit a rank click on the green icon.<br />
That’s it you now know how to manage ranks in phpBB</p>
<script type="text/javascript"><!--
                    google_ad_client = "pub-7099335855422733";
                    google_ad_slot = "4729128935";
                    google_ad_width = 336;
                    google_ad_height = 280;
                    //-->
                    </script>
                    <script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
        </script>
                    ]]></content:encoded>
			<wfw:commentRss>http://bestwebdesignz.com/tips/phpbb-tutorials/how-to-manage-ranks-in-phpbb/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<series:name><![CDATA[phpBB Tutorials]]></series:name>
	</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.453 seconds -->

