<?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[Ninja Admins Community - PHP Developer]]></title>
		<link>https://ninjadmins.com/</link>
		<description><![CDATA[Ninja Admins Community - https://ninjadmins.com]]></description>
		<pubDate>Sun, 10 May 2026 12:40:52 +0000</pubDate>
		<generator>MyBB</generator>
		<item>
			<title><![CDATA[Building PHP applications with or without a framework]]></title>
			<link>https://ninjadmins.com/topic/building-php-applications-with-or-without-a-framework</link>
			<pubDate>Tue, 09 Feb 2021 02:09:03 -0500</pubDate>
			<dc:creator><![CDATA[<a href="https://ninjadmins.com/member.php?action=profile&uid=1">Michael.Sentry</a>]]></dc:creator>
			<guid isPermaLink="false">https://ninjadmins.com/topic/building-php-applications-with-or-without-a-framework</guid>
			<description><![CDATA[In this topic we'll be learning how to build a PHP application without a framework, and then learning how to build your first MVC Framework with PHP. <br />
<br />
Learning how to build your own PHP applications without a PHP framework can be very similar to building with a framework, without the specific framework requirements and opinionated design.<br />
<br />
Building an MVC Framework with PHP is a great way to learn how to build a PHP application from scratch with more focus on the structure and architecture.<br />
<br />
In both cases you will depend on libraries and organising your code to make it more reusable with less duplication. <br />
Learning how to isolate errors and separate your code is one of the most important factors for building future proof, maintainable applications.<br />
<br />
read_more<br />
<br />
First learn to build a PHP application without a framework :<br />
<br />
Patrick  Louys :<br />
<a href="https://github.com/PatrickLouys/no-framework-tutorial" target="_blank" rel="noopener" class="mycode_url">https://github.com/PatrickLouys/no-framework-tutorial</a><br />
<br />
Kevin Smith :<br />
<a href="https://kevinsmith.io/modern-php-without-a-framework" target="_blank" rel="noopener" class="mycode_url">https://kevinsmith.io/modern-php-without-a-framework</a><br />
<a href="https://github.com/kevinsmith/no-framework" target="_blank" rel="noopener" class="mycode_url">https://github.com/kevinsmith/no-framework</a><br />
<br />
How To Code on PHP7 Without using a Framework :<br />
<a href="https://hackernoon.com/how-to-code-on-php7-without-using-a-framework-df173t2q" target="_blank" rel="noopener" class="mycode_url">https://hackernoon.com/how-to-code-on-ph...k-df173t2q</a><br />
<br />
--<br />
<br />
A more comprehensive example made by Bruno Škvorc <br />
<br />
A no-framework application skeleton<br />
<a href="https://github.com/Swader/nofw" target="_blank" rel="noopener" class="mycode_url">https://github.com/Swader/nofw</a><br />
<br />
--<br />
<br />
Now let's learn how to build an MVC framework with PHP :<br />
<br />
--<br />
<br />
Laconia | Tania Rascia :<br />
<a href="https://github.com/taniarascia/laconia" target="_blank" rel="noopener" class="mycode_url">https://github.com/taniarascia/laconia</a><br />
<a href="https://www.taniarascia.com/tags/php/" target="_blank" rel="noopener" class="mycode_url">https://www.taniarascia.com/tags/php/</a><br />
<br />
Use PHP to Create an MVC Framework - [ FreeCodeCamp ][ Codeholic ]<br />
<a href="https://www.youtube.com/watch?v=6ERdu4k62wI" target="_blank" rel="noopener" class="mycode_url">https://www.youtube.com/watch?v=6ERdu4k62wI</a><br />
<a href="https://www.youtube.com/thecodeholic" target="_blank" rel="noopener" class="mycode_url">https://www.youtube.com/thecodeholic</a><br />
<a href="https://github.com/thecodeholic/php-mvc-framework" target="_blank" rel="noopener" class="mycode_url">https://github.com/thecodeholic/php-mvc-framework</a><br />
<br />
Complete MVC Framework In OOP | How To Create A MVC Framework in PHP | Code With Dary<br />
<a href="https://www.youtube.com/watch?v=n2yeK6LwSII" target="_blank" rel="noopener" class="mycode_url">https://www.youtube.com/watch?v=n2yeK6LwSII</a><br />
<br />
The Principles of the MVC Design Pattern :<br />
<a href="https://github.com/gjerokrsteski/easy-php-mvc" target="_blank" rel="noopener" class="mycode_url">https://github.com/gjerokrsteski/easy-php-mvc</a><br />
<br />
Building a framework with Symfony components :<br />
<a href="https://www.sitepoint.com/build-php-framework-symfony-components/" target="_blank" rel="noopener" class="mycode_url">https://www.sitepoint.com/build-php-fram...omponents/</a><br />
<br />
--<br />
<br />
Fitzgerald PHP<br />
<br />
A good example of a small framework is Fitzgerald :<br />
<a href="https://github.com/gregmolnar/fitzgerald" target="_blank" rel="noopener" class="mycode_url">https://github.com/gregmolnar/fitzgerald</a> <br />
<a href="https://gregmolnar.github.io/fitzgerald/" target="_blank" rel="noopener" class="mycode_url">https://gregmolnar.github.io/fitzgerald/</a><br />
<br />
Fitzgerald : a Sinatra clone in PHP ( Ruby on rails framework ):<br />
<a href="http://autonomousmachine.com/posts/2008/11/21/fitzgerald-a-sinatra-clone-in-php" target="_blank" rel="noopener" class="mycode_url">http://autonomousmachine.com/posts/2008/...one-in-php</a><br />
<a href="http://autonomousmachine.com/2009/2/3/fitzgerald-update-before-filters-and-senddownload" target="_blank" rel="noopener" class="mycode_url">http://autonomousmachine.com/2009/2/3/fi...nddownload</a><br />
<br />
--<br />
<br />
Now use PHP to build whatever you want with or without a framework =&gt; &#36;&#36;]]></description>
			<content:encoded><![CDATA[In this topic we'll be learning how to build a PHP application without a framework, and then learning how to build your first MVC Framework with PHP. <br />
<br />
Learning how to build your own PHP applications without a PHP framework can be very similar to building with a framework, without the specific framework requirements and opinionated design.<br />
<br />
Building an MVC Framework with PHP is a great way to learn how to build a PHP application from scratch with more focus on the structure and architecture.<br />
<br />
In both cases you will depend on libraries and organising your code to make it more reusable with less duplication. <br />
Learning how to isolate errors and separate your code is one of the most important factors for building future proof, maintainable applications.<br />
<br />
read_more<br />
<br />
First learn to build a PHP application without a framework :<br />
<br />
Patrick  Louys :<br />
<a href="https://github.com/PatrickLouys/no-framework-tutorial" target="_blank" rel="noopener" class="mycode_url">https://github.com/PatrickLouys/no-framework-tutorial</a><br />
<br />
Kevin Smith :<br />
<a href="https://kevinsmith.io/modern-php-without-a-framework" target="_blank" rel="noopener" class="mycode_url">https://kevinsmith.io/modern-php-without-a-framework</a><br />
<a href="https://github.com/kevinsmith/no-framework" target="_blank" rel="noopener" class="mycode_url">https://github.com/kevinsmith/no-framework</a><br />
<br />
How To Code on PHP7 Without using a Framework :<br />
<a href="https://hackernoon.com/how-to-code-on-php7-without-using-a-framework-df173t2q" target="_blank" rel="noopener" class="mycode_url">https://hackernoon.com/how-to-code-on-ph...k-df173t2q</a><br />
<br />
--<br />
<br />
A more comprehensive example made by Bruno Škvorc <br />
<br />
A no-framework application skeleton<br />
<a href="https://github.com/Swader/nofw" target="_blank" rel="noopener" class="mycode_url">https://github.com/Swader/nofw</a><br />
<br />
--<br />
<br />
Now let's learn how to build an MVC framework with PHP :<br />
<br />
--<br />
<br />
Laconia | Tania Rascia :<br />
<a href="https://github.com/taniarascia/laconia" target="_blank" rel="noopener" class="mycode_url">https://github.com/taniarascia/laconia</a><br />
<a href="https://www.taniarascia.com/tags/php/" target="_blank" rel="noopener" class="mycode_url">https://www.taniarascia.com/tags/php/</a><br />
<br />
Use PHP to Create an MVC Framework - [ FreeCodeCamp ][ Codeholic ]<br />
<a href="https://www.youtube.com/watch?v=6ERdu4k62wI" target="_blank" rel="noopener" class="mycode_url">https://www.youtube.com/watch?v=6ERdu4k62wI</a><br />
<a href="https://www.youtube.com/thecodeholic" target="_blank" rel="noopener" class="mycode_url">https://www.youtube.com/thecodeholic</a><br />
<a href="https://github.com/thecodeholic/php-mvc-framework" target="_blank" rel="noopener" class="mycode_url">https://github.com/thecodeholic/php-mvc-framework</a><br />
<br />
Complete MVC Framework In OOP | How To Create A MVC Framework in PHP | Code With Dary<br />
<a href="https://www.youtube.com/watch?v=n2yeK6LwSII" target="_blank" rel="noopener" class="mycode_url">https://www.youtube.com/watch?v=n2yeK6LwSII</a><br />
<br />
The Principles of the MVC Design Pattern :<br />
<a href="https://github.com/gjerokrsteski/easy-php-mvc" target="_blank" rel="noopener" class="mycode_url">https://github.com/gjerokrsteski/easy-php-mvc</a><br />
<br />
Building a framework with Symfony components :<br />
<a href="https://www.sitepoint.com/build-php-framework-symfony-components/" target="_blank" rel="noopener" class="mycode_url">https://www.sitepoint.com/build-php-fram...omponents/</a><br />
<br />
--<br />
<br />
Fitzgerald PHP<br />
<br />
A good example of a small framework is Fitzgerald :<br />
<a href="https://github.com/gregmolnar/fitzgerald" target="_blank" rel="noopener" class="mycode_url">https://github.com/gregmolnar/fitzgerald</a> <br />
<a href="https://gregmolnar.github.io/fitzgerald/" target="_blank" rel="noopener" class="mycode_url">https://gregmolnar.github.io/fitzgerald/</a><br />
<br />
Fitzgerald : a Sinatra clone in PHP ( Ruby on rails framework ):<br />
<a href="http://autonomousmachine.com/posts/2008/11/21/fitzgerald-a-sinatra-clone-in-php" target="_blank" rel="noopener" class="mycode_url">http://autonomousmachine.com/posts/2008/...one-in-php</a><br />
<a href="http://autonomousmachine.com/2009/2/3/fitzgerald-update-before-filters-and-senddownload" target="_blank" rel="noopener" class="mycode_url">http://autonomousmachine.com/2009/2/3/fi...nddownload</a><br />
<br />
--<br />
<br />
Now use PHP to build whatever you want with or without a framework =&gt; &#36;&#36;]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Build Your Own Community With a PHP Forum]]></title>
			<link>https://ninjadmins.com/topic/build-your-own-community-with-a-php-forum</link>
			<pubDate>Mon, 08 Feb 2021 23:58:17 -0500</pubDate>
			<dc:creator><![CDATA[<a href="https://ninjadmins.com/member.php?action=profile&uid=1">Michael.Sentry</a>]]></dc:creator>
			<guid isPermaLink="false">https://ninjadmins.com/topic/build-your-own-community-with-a-php-forum</guid>
			<description><![CDATA[There are many reasons why building your own community with a PHP forum is a good idea. <br />
<br />
There are also good reasons why you should not. Building a community requires you to invest a lot of your time into making a comfortable, <br />
safe and fun environment where people are willing to share, build friendships, and will want to return to visit again.<br />
<br />
Running your own forum instead of using a forum hosted and managed by someone else means you have full control over everything, and with great power comes great responsibility. <br />
<br />
Yes, you are responsible for everything. Every little thing. <br />
<br />
Your first choice is to decide on using a commercial forum or a free forum. <br />
Then you need to decide if your community forum wil be self hosted or use managed hosting.<br />
<br />
There have never been so many community software options to choose from. <br />
<br />
In this topic I'll explore various options and look into which forum software I've chosen and why.<br />
<br />
read_more <br />
<br />
Here's a list of commercial and free php based forums you can use to build your own community :<br />
<br />
---------------<br />
Commercial PHP Forums :<br />
---------------<br />
<br />
Invision :<br />
Most expensive self hosted forum on the market, for good reason. <br />
Invision is the leading community forums for a price.<br />
Previous major versions are abandoned and unsupported. Full upgrade is required.<br />
<br />
XenForo<br />
A very popular community forum placed somewhere in between Invision and VBulletin.<br />
Moderately priced self hosted forum.<br />
Has some weird default settings like auto submitting sitemaps before you even have any content, <br />
even if it's only installed on your localhost server for testing. <br />
<br />
VBulletin<br />
An older and well established forum software that has not progressed much since it was bought out.<br />
<br />
Woltlab Burning Board<br />
Alternative to the major commercial forums.<br />
<a href="https://www.woltlab.com/" target="_blank" rel="noopener" class="mycode_url">https://www.woltlab.com/</a><br />
<a href="https://community.woltlab.com/" target="_blank" rel="noopener" class="mycode_url">https://community.woltlab.com/</a><br />
<br />
-------<br />
Free PHP forums :<br />
-------<br />
<br />
MyBB<br />
<a href="https://mybb.com" target="_blank" rel="noopener" class="mycode_url">https://mybb.com</a><br />
<br />
Flarum<br />
<a href="https://github.com/flarum/flarum" target="_blank" rel="noopener" class="mycode_url">https://github.com/flarum/flarum</a><br />
<br />
Vanilla<br />
<a href="https://github.com/vanilla/vanilla" target="_blank" rel="noopener" class="mycode_url">https://github.com/vanilla/vanilla</a><br />
<br />
Codo Forum<br />
<a href="https://codoforum.com/" target="_blank" rel="noopener" class="mycode_url">https://codoforum.com/</a><br />
<a href="https://codoforum.com/documentation/introduction" target="_blank" rel="noopener" class="mycode_url">https://codoforum.com/documentation/introduction</a><br />
<br />
PhpBB<br />
<a href="https://github.com/phpbb/" target="_blank" rel="noopener" class="mycode_url">https://github.com/phpbb/</a><br />
<br />
PunBB<br />
<a href="https://github.com/punbb/punbb" target="_blank" rel="noopener" class="mycode_url">https://github.com/punbb/punbb</a><br />
<br />
FluxBB<br />
<a href="https://github.com/fluxbb/fluxbb" target="_blank" rel="noopener" class="mycode_url">https://github.com/fluxbb/fluxbb</a><br />
<a href="https://github.com/MioVisman/FluxBB_by_Visman" target="_blank" rel="noopener" class="mycode_url">https://github.com/MioVisman/FluxBB_by_Visman</a><br />
<br />
ForkBB<br />
<a href="https://github.com/forkbb/forkbb" target="_blank" rel="noopener" class="mycode_url">https://github.com/forkbb/forkbb</a><br />
<br />
GetLuna<br />
<a href="https://github.com/GetLuna/Luna" target="_blank" rel="noopener" class="mycode_url">https://github.com/GetLuna/Luna</a><br />
<br />
FeatherBB ( Slim Framework )<br />
<a href="https://github.com/featherbb/featherbb" target="_blank" rel="noopener" class="mycode_url">https://github.com/featherbb/featherbb</a><br />
<br />
Phosphorum [ Phalcon ]<br />
<a href="https://github.com/phalcon/forum" target="_blank" rel="noopener" class="mycode_url">https://github.com/phalcon/forum</a><br />
<br />
-------------------------<br />
Laravel based forums :<br />
-------------------------<br />
<br />
Council [ Laracasts]<br />
Chatter [ DevDojo ]<br />
Laraboard<br />
<br />
-----------------------<br />
CMS Based Forums :<br />
-----------------------<br />
<br />
[ Joomla ]<br />
Kunena<br />
<br />
[ wordpress ]<br />
bbPress<br />
BuddyPress<br />
<br />
--<br />
<br />
Chrono Forums<br />
<a href="https://www.chronoengine.com/chronoforums" target="_blank" rel="noopener" class="mycode_url">https://www.chronoengine.com/chronoforums</a><br />
<a href="https://www.chronoengine.com/forums" target="_blank" rel="noopener" class="mycode_url">https://www.chronoengine.com/forums</a><br />
<br />
--<br />
<br />
Simple Machines Forum software  :<br />
<br />
SMF<br />
ElKarte<br />
Wedge<br />
<br />
At one time SMF looked very promising. Progress is slow. <br />
ElKarte and Wedge are based on SMF, <br />
and provide many of the basic features missing or totally ignored in SMF.<br />
<br />
--<br />
<br />
Searching for forum projects on Github :<br />
<br />
<a href="https://github.com/search?p=2&amp;q=php+forum&amp;type=Repositories" target="_blank" rel="noopener" class="mycode_url">https://github.com/search?p=2&amp;q=php+foru...positories</a><br />
<a href="https://github.com/topics/community-forums" target="_blank" rel="noopener" class="mycode_url">https://github.com/topics/community-forums</a><br />
<a href="https://github.com/topics/discussion-forum" target="_blank" rel="noopener" class="mycode_url">https://github.com/topics/discussion-forum</a><br />
<br />
--<br />
<br />
Building your own php powered community forum from scratch :<br />
<a href="https://code.tutsplus.com/tutorials/how-to-create-a-phpmysql-powered-forum-from-scratch--net-10188" target="_blank" rel="noopener" class="mycode_url">https://code.tutsplus.com/tutorials/how-...-net-10188</a><br />
<br />
--<br />
<br />
What I'm looking for when choosing a forum are things like the url structure, theming options and of course the security features. <br />
<br />
Is the forum easy to use, with enough basic functionality to manage a community, or will it be an extended nightmare that will ultimately drive you crazy with frustration and send you broke.<br />
<br />
How likely is it that the software will be abandoned, or replaced with something else next year that forces you into a new payment cycle all over again. <br />
<br />
Are bugs fixed or ignored.<br />
<br />
Security is the most important factor when running a forum. It should be easy to keep your forum secure.<br />
Preventing malicious intrusions, spammers and bots from disrupting the forum is a daily never ending battle. <br />
The bigger the community the more of a target it will become.<br />
<br />
The url structure is also important. A modern community forum must have semantic urls, commonly known as search engine friendly or clean urls.<br />
<br />
I chose MyBB for the Ninja Admins community because of all these factors, including the ability to customise the url structure.<br />
Instead of being forced to use the same url style as every other forum, MyBB has a 3rd party plugin that can rewrite the urls to our own design.<br />
<br />
Here on Ninja Admins we're using simple clean url segments like 'forum' for the forum sections, and 'topic' for the forum topics. <br />
There are no numeric id's required, unless we have duplicate forum topic titles. <br />
<br />
Many forum software still cannot provide clean urls, and don't consider the url structure as an important factor, despite people in their own community asking for it.<br />
Most of the time the topic itself is dismissed, and the brave people who ask for the ability to have clean urls are ridiculed for even asking. ( Thinking of you PhpBB.. )<br />
<br />
When people are dismissed on a forum for asking questions about something that's important to them, it's a sign that the 'community' is already dead. <br />
It's a good sign that the forum is run by zombies and mods with an 'overlord' personality disorder,  who are in it for their own interests and not for making a better community for other people.<br />
<br />
Dismissiveness is how you destroy a community, it's not how you build one. <br />
<br />
My reasons for choosing MyBB as the base for our community is covered in more details here :<br />
<a href="https://ninjadmins.com/topic/mybb-developers-support-forum" target="_blank" rel="noopener" class="mycode_url">https://ninjadmins.com/topic/mybb-develo...port-forum</a><br />
<br />
--<br />
<br />
What's your favourite community forum ? <br />
What have you tried ?<br />
What would you recommend ?<br />
<br />
---<br />
<br />
Check back later for more updates.<br />
<br />
--]]></description>
			<content:encoded><![CDATA[There are many reasons why building your own community with a PHP forum is a good idea. <br />
<br />
There are also good reasons why you should not. Building a community requires you to invest a lot of your time into making a comfortable, <br />
safe and fun environment where people are willing to share, build friendships, and will want to return to visit again.<br />
<br />
Running your own forum instead of using a forum hosted and managed by someone else means you have full control over everything, and with great power comes great responsibility. <br />
<br />
Yes, you are responsible for everything. Every little thing. <br />
<br />
Your first choice is to decide on using a commercial forum or a free forum. <br />
Then you need to decide if your community forum wil be self hosted or use managed hosting.<br />
<br />
There have never been so many community software options to choose from. <br />
<br />
In this topic I'll explore various options and look into which forum software I've chosen and why.<br />
<br />
read_more <br />
<br />
Here's a list of commercial and free php based forums you can use to build your own community :<br />
<br />
---------------<br />
Commercial PHP Forums :<br />
---------------<br />
<br />
Invision :<br />
Most expensive self hosted forum on the market, for good reason. <br />
Invision is the leading community forums for a price.<br />
Previous major versions are abandoned and unsupported. Full upgrade is required.<br />
<br />
XenForo<br />
A very popular community forum placed somewhere in between Invision and VBulletin.<br />
Moderately priced self hosted forum.<br />
Has some weird default settings like auto submitting sitemaps before you even have any content, <br />
even if it's only installed on your localhost server for testing. <br />
<br />
VBulletin<br />
An older and well established forum software that has not progressed much since it was bought out.<br />
<br />
Woltlab Burning Board<br />
Alternative to the major commercial forums.<br />
<a href="https://www.woltlab.com/" target="_blank" rel="noopener" class="mycode_url">https://www.woltlab.com/</a><br />
<a href="https://community.woltlab.com/" target="_blank" rel="noopener" class="mycode_url">https://community.woltlab.com/</a><br />
<br />
-------<br />
Free PHP forums :<br />
-------<br />
<br />
MyBB<br />
<a href="https://mybb.com" target="_blank" rel="noopener" class="mycode_url">https://mybb.com</a><br />
<br />
Flarum<br />
<a href="https://github.com/flarum/flarum" target="_blank" rel="noopener" class="mycode_url">https://github.com/flarum/flarum</a><br />
<br />
Vanilla<br />
<a href="https://github.com/vanilla/vanilla" target="_blank" rel="noopener" class="mycode_url">https://github.com/vanilla/vanilla</a><br />
<br />
Codo Forum<br />
<a href="https://codoforum.com/" target="_blank" rel="noopener" class="mycode_url">https://codoforum.com/</a><br />
<a href="https://codoforum.com/documentation/introduction" target="_blank" rel="noopener" class="mycode_url">https://codoforum.com/documentation/introduction</a><br />
<br />
PhpBB<br />
<a href="https://github.com/phpbb/" target="_blank" rel="noopener" class="mycode_url">https://github.com/phpbb/</a><br />
<br />
PunBB<br />
<a href="https://github.com/punbb/punbb" target="_blank" rel="noopener" class="mycode_url">https://github.com/punbb/punbb</a><br />
<br />
FluxBB<br />
<a href="https://github.com/fluxbb/fluxbb" target="_blank" rel="noopener" class="mycode_url">https://github.com/fluxbb/fluxbb</a><br />
<a href="https://github.com/MioVisman/FluxBB_by_Visman" target="_blank" rel="noopener" class="mycode_url">https://github.com/MioVisman/FluxBB_by_Visman</a><br />
<br />
ForkBB<br />
<a href="https://github.com/forkbb/forkbb" target="_blank" rel="noopener" class="mycode_url">https://github.com/forkbb/forkbb</a><br />
<br />
GetLuna<br />
<a href="https://github.com/GetLuna/Luna" target="_blank" rel="noopener" class="mycode_url">https://github.com/GetLuna/Luna</a><br />
<br />
FeatherBB ( Slim Framework )<br />
<a href="https://github.com/featherbb/featherbb" target="_blank" rel="noopener" class="mycode_url">https://github.com/featherbb/featherbb</a><br />
<br />
Phosphorum [ Phalcon ]<br />
<a href="https://github.com/phalcon/forum" target="_blank" rel="noopener" class="mycode_url">https://github.com/phalcon/forum</a><br />
<br />
-------------------------<br />
Laravel based forums :<br />
-------------------------<br />
<br />
Council [ Laracasts]<br />
Chatter [ DevDojo ]<br />
Laraboard<br />
<br />
-----------------------<br />
CMS Based Forums :<br />
-----------------------<br />
<br />
[ Joomla ]<br />
Kunena<br />
<br />
[ wordpress ]<br />
bbPress<br />
BuddyPress<br />
<br />
--<br />
<br />
Chrono Forums<br />
<a href="https://www.chronoengine.com/chronoforums" target="_blank" rel="noopener" class="mycode_url">https://www.chronoengine.com/chronoforums</a><br />
<a href="https://www.chronoengine.com/forums" target="_blank" rel="noopener" class="mycode_url">https://www.chronoengine.com/forums</a><br />
<br />
--<br />
<br />
Simple Machines Forum software  :<br />
<br />
SMF<br />
ElKarte<br />
Wedge<br />
<br />
At one time SMF looked very promising. Progress is slow. <br />
ElKarte and Wedge are based on SMF, <br />
and provide many of the basic features missing or totally ignored in SMF.<br />
<br />
--<br />
<br />
Searching for forum projects on Github :<br />
<br />
<a href="https://github.com/search?p=2&amp;q=php+forum&amp;type=Repositories" target="_blank" rel="noopener" class="mycode_url">https://github.com/search?p=2&amp;q=php+foru...positories</a><br />
<a href="https://github.com/topics/community-forums" target="_blank" rel="noopener" class="mycode_url">https://github.com/topics/community-forums</a><br />
<a href="https://github.com/topics/discussion-forum" target="_blank" rel="noopener" class="mycode_url">https://github.com/topics/discussion-forum</a><br />
<br />
--<br />
<br />
Building your own php powered community forum from scratch :<br />
<a href="https://code.tutsplus.com/tutorials/how-to-create-a-phpmysql-powered-forum-from-scratch--net-10188" target="_blank" rel="noopener" class="mycode_url">https://code.tutsplus.com/tutorials/how-...-net-10188</a><br />
<br />
--<br />
<br />
What I'm looking for when choosing a forum are things like the url structure, theming options and of course the security features. <br />
<br />
Is the forum easy to use, with enough basic functionality to manage a community, or will it be an extended nightmare that will ultimately drive you crazy with frustration and send you broke.<br />
<br />
How likely is it that the software will be abandoned, or replaced with something else next year that forces you into a new payment cycle all over again. <br />
<br />
Are bugs fixed or ignored.<br />
<br />
Security is the most important factor when running a forum. It should be easy to keep your forum secure.<br />
Preventing malicious intrusions, spammers and bots from disrupting the forum is a daily never ending battle. <br />
The bigger the community the more of a target it will become.<br />
<br />
The url structure is also important. A modern community forum must have semantic urls, commonly known as search engine friendly or clean urls.<br />
<br />
I chose MyBB for the Ninja Admins community because of all these factors, including the ability to customise the url structure.<br />
Instead of being forced to use the same url style as every other forum, MyBB has a 3rd party plugin that can rewrite the urls to our own design.<br />
<br />
Here on Ninja Admins we're using simple clean url segments like 'forum' for the forum sections, and 'topic' for the forum topics. <br />
There are no numeric id's required, unless we have duplicate forum topic titles. <br />
<br />
Many forum software still cannot provide clean urls, and don't consider the url structure as an important factor, despite people in their own community asking for it.<br />
Most of the time the topic itself is dismissed, and the brave people who ask for the ability to have clean urls are ridiculed for even asking. ( Thinking of you PhpBB.. )<br />
<br />
When people are dismissed on a forum for asking questions about something that's important to them, it's a sign that the 'community' is already dead. <br />
It's a good sign that the forum is run by zombies and mods with an 'overlord' personality disorder,  who are in it for their own interests and not for making a better community for other people.<br />
<br />
Dismissiveness is how you destroy a community, it's not how you build one. <br />
<br />
My reasons for choosing MyBB as the base for our community is covered in more details here :<br />
<a href="https://ninjadmins.com/topic/mybb-developers-support-forum" target="_blank" rel="noopener" class="mycode_url">https://ninjadmins.com/topic/mybb-develo...port-forum</a><br />
<br />
--<br />
<br />
What's your favourite community forum ? <br />
What have you tried ?<br />
What would you recommend ?<br />
<br />
---<br />
<br />
Check back later for more updates.<br />
<br />
--]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Rate Limiting Flood Prevention Resources]]></title>
			<link>https://ninjadmins.com/topic/rate-limiting-flood-prevention-resources</link>
			<pubDate>Mon, 18 Jan 2021 02:23:21 -0500</pubDate>
			<dc:creator><![CDATA[<a href="https://ninjadmins.com/member.php?action=profile&uid=1">Michael.Sentry</a>]]></dc:creator>
			<guid isPermaLink="false">https://ninjadmins.com/topic/rate-limiting-flood-prevention-resources</guid>
			<description><![CDATA[A collection of Rate Limiting and Flood Control PHP libraries.<br />
<br />
read_more<br />
<br />
GitHub - nikolaposa/rate-limit: General purpose rate limiter implementation.<br />
<a href="https://github.com/nikolaposa/rate-limit" target="_blank" rel="noopener" class="mycode_url">https://github.com/nikolaposa/rate-limit</a><br />
<br />
GitHub - sunspikes/php-ratelimiter: A framework independent rate limiter for PHP<br />
<a href="https://github.com/sunspikes/php-ratelimiter" target="_blank" rel="noopener" class="mycode_url">https://github.com/sunspikes/php-ratelimiter</a><br />
<br />
Throttle :<br />
<a href="https://github.com/jakiestfu/Throttle" target="_blank" rel="noopener" class="mycode_url">https://github.com/jakiestfu/Throttle</a><br />
<br />
php-floodprotection :<br />
<a href="https://github.com/frdl/php-floodprotection" target="_blank" rel="noopener" class="mycode_url">https://github.com/frdl/php-floodprotection</a><br />
<br />
Rate Limit :<br />
PHP Rate Limiting Library With Token Bucket Algorithm<br />
<a href="http://touhonoob.github.io/RateLimit/" target="_blank" rel="noopener" class="mycode_url">http://touhonoob.github.io/RateLimit/</a><br />
<a href="https://github.com/touhonoob/RateLimit" target="_blank" rel="noopener" class="mycode_url">https://github.com/touhonoob/RateLimit</a><br />
<br />
<a href="https://en.wikipedia.org/wiki/Token_bucket" target="_blank" rel="noopener" class="mycode_url">https://en.wikipedia.org/wiki/Token_bucket</a><br />
<br />
HTTP_FloodControl Class<br />
<a href="http://www.tozalakyan.com/fc/" target="_blank" rel="noopener" class="mycode_url">http://www.tozalakyan.com/fc/</a><br />
<a href="https://www.phpclasses.org/package/2248-PHP-Detect-and-protect-from-attempts-to-flood-a-site.html" target="_blank" rel="noopener" class="mycode_url">https://www.phpclasses.org/package/2248-...-site.html</a>]]></description>
			<content:encoded><![CDATA[A collection of Rate Limiting and Flood Control PHP libraries.<br />
<br />
read_more<br />
<br />
GitHub - nikolaposa/rate-limit: General purpose rate limiter implementation.<br />
<a href="https://github.com/nikolaposa/rate-limit" target="_blank" rel="noopener" class="mycode_url">https://github.com/nikolaposa/rate-limit</a><br />
<br />
GitHub - sunspikes/php-ratelimiter: A framework independent rate limiter for PHP<br />
<a href="https://github.com/sunspikes/php-ratelimiter" target="_blank" rel="noopener" class="mycode_url">https://github.com/sunspikes/php-ratelimiter</a><br />
<br />
Throttle :<br />
<a href="https://github.com/jakiestfu/Throttle" target="_blank" rel="noopener" class="mycode_url">https://github.com/jakiestfu/Throttle</a><br />
<br />
php-floodprotection :<br />
<a href="https://github.com/frdl/php-floodprotection" target="_blank" rel="noopener" class="mycode_url">https://github.com/frdl/php-floodprotection</a><br />
<br />
Rate Limit :<br />
PHP Rate Limiting Library With Token Bucket Algorithm<br />
<a href="http://touhonoob.github.io/RateLimit/" target="_blank" rel="noopener" class="mycode_url">http://touhonoob.github.io/RateLimit/</a><br />
<a href="https://github.com/touhonoob/RateLimit" target="_blank" rel="noopener" class="mycode_url">https://github.com/touhonoob/RateLimit</a><br />
<br />
<a href="https://en.wikipedia.org/wiki/Token_bucket" target="_blank" rel="noopener" class="mycode_url">https://en.wikipedia.org/wiki/Token_bucket</a><br />
<br />
HTTP_FloodControl Class<br />
<a href="http://www.tozalakyan.com/fc/" target="_blank" rel="noopener" class="mycode_url">http://www.tozalakyan.com/fc/</a><br />
<a href="https://www.phpclasses.org/package/2248-PHP-Detect-and-protect-from-attempts-to-flood-a-site.html" target="_blank" rel="noopener" class="mycode_url">https://www.phpclasses.org/package/2248-...-site.html</a>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[PHP 8 Resources List]]></title>
			<link>https://ninjadmins.com/topic/php-8-resources-list</link>
			<pubDate>Tue, 12 Jan 2021 04:21:58 -0500</pubDate>
			<dc:creator><![CDATA[<a href="https://ninjadmins.com/member.php?action=profile&uid=1">Michael.Sentry</a>]]></dc:creator>
			<guid isPermaLink="false">https://ninjadmins.com/topic/php-8-resources-list</guid>
			<description><![CDATA[A collection of developer resources for PHP 8 . <br />
PHP 8 is the newest, and greatest version of PHP so far.<br />
<br />
<blockquote class="mycode_quote"><cite>Quote:</cite>PHP 8.0 comes with many long-awaited features: A just-in-time compiler, attributes, union types, and named arguments are just a small part of the list. As a major version, it also includes some backward-incompatible changes, which are centered around stricter error handling and enhanced type safety.</blockquote>
<br />
read_more<br />
<br />
PHP 8.0 is a major update of the PHP language :<br />
<a href="https://www.php.net/releases/8.0/en.php" target="_blank" rel="noopener" class="mycode_url">https://www.php.net/releases/8.0/en.php</a><br />
<br />
PHP 8.0 migration guide :<br />
<a href="https://www.php.net/manual/en/migration80.php" target="_blank" rel="noopener" class="mycode_url">https://www.php.net/manual/en/migration80.php</a><br />
<br />
Upgrade Notes :<br />
<a href="https://github.com/php/php-src/blob/PHP-8.0/UPGRADING" target="_blank" rel="noopener" class="mycode_url">https://github.com/php/php-src/blob/PHP-8.0/UPGRADING</a><br />
<br />
--<br />
<br />
What's new in PHP 8.0 - by Nikita Popov :<br />
<a href="https://www.slideshare.net/nikita_ppv/whats-new-in-php-80-239762987" target="_blank" rel="noopener" class="mycode_url">https://www.slideshare.net/nikita_ppv/wh...-239762987</a><br />
<br />
--<br />
<br />
What's new in PHP 8 :<br />
<a href="https://stitcher.io/blog/new-in-php-8" target="_blank" rel="noopener" class="mycode_url">https://stitcher.io/blog/new-in-php-8</a><br />
<a href="https://kinsta.com/blog/php-8/" target="_blank" rel="noopener" class="mycode_url">https://kinsta.com/blog/php-8/</a><br />
<br />
Exploring PHP 8: New Features and Improvements<br />
<a href="https://www.zend.com/blog/exploring-php-8" target="_blank" rel="noopener" class="mycode_url">https://www.zend.com/blog/exploring-php-8</a><br />
<br />
--<br />
<br />
Short Closures :<br />
<a href="https://stitcher.io/blog/short-closures-in-php" target="_blank" rel="noopener" class="mycode_url">https://stitcher.io/blog/short-closures-in-php</a><br />
<br />
--<br />
<br />
PHP 8 Topic :<br />
<a href="https://github.com/topics/php8" target="_blank" rel="noopener" class="mycode_url">https://github.com/topics/php8</a><br />
<br />
--<br />
<br />
What's new in PHP 8.0 | By THe Codeholic :<br />
<a href="https://www.youtube.com/watch?v=uU1-ZqIbYes" target="_blank" rel="noopener" class="mycode_url">https://www.youtube.com/watch?v=uU1-ZqIbYes</a><br />
<br />
PHP 8 Released! My Top 5 Killer New Features<br />
<a href="https://www.youtube.com/watch?v=P5ML-Fl8sUk" target="_blank" rel="noopener" class="mycode_url">https://www.youtube.com/watch?v=P5ML-Fl8sUk</a><br />
<br />
--<br />
<br />
Linux :<br />
<br />
How to install PHP 8 on CentOS, Rhel and Fedora systems with Remi's Repo :<br />
<a href="https://blog.remirepo.net/post/2020/11/30/Install-PHP-8.0-on-CentOS-RHEL-or-Fedora" target="_blank" rel="noopener" class="mycode_url">https://blog.remirepo.net/post/2020/11/3...-or-Fedora</a><br />
<br />
Install PHP 8 alongside the default system version of PHP with Software Collections <br />
<a href="https://blog.remirepo.net/post/2020/04/10/PHP-8.0-as-Software-Collection" target="_blank" rel="noopener" class="mycode_url">https://blog.remirepo.net/post/2020/04/1...Collection</a><br />
<br />
--]]></description>
			<content:encoded><![CDATA[A collection of developer resources for PHP 8 . <br />
PHP 8 is the newest, and greatest version of PHP so far.<br />
<br />
<blockquote class="mycode_quote"><cite>Quote:</cite>PHP 8.0 comes with many long-awaited features: A just-in-time compiler, attributes, union types, and named arguments are just a small part of the list. As a major version, it also includes some backward-incompatible changes, which are centered around stricter error handling and enhanced type safety.</blockquote>
<br />
read_more<br />
<br />
PHP 8.0 is a major update of the PHP language :<br />
<a href="https://www.php.net/releases/8.0/en.php" target="_blank" rel="noopener" class="mycode_url">https://www.php.net/releases/8.0/en.php</a><br />
<br />
PHP 8.0 migration guide :<br />
<a href="https://www.php.net/manual/en/migration80.php" target="_blank" rel="noopener" class="mycode_url">https://www.php.net/manual/en/migration80.php</a><br />
<br />
Upgrade Notes :<br />
<a href="https://github.com/php/php-src/blob/PHP-8.0/UPGRADING" target="_blank" rel="noopener" class="mycode_url">https://github.com/php/php-src/blob/PHP-8.0/UPGRADING</a><br />
<br />
--<br />
<br />
What's new in PHP 8.0 - by Nikita Popov :<br />
<a href="https://www.slideshare.net/nikita_ppv/whats-new-in-php-80-239762987" target="_blank" rel="noopener" class="mycode_url">https://www.slideshare.net/nikita_ppv/wh...-239762987</a><br />
<br />
--<br />
<br />
What's new in PHP 8 :<br />
<a href="https://stitcher.io/blog/new-in-php-8" target="_blank" rel="noopener" class="mycode_url">https://stitcher.io/blog/new-in-php-8</a><br />
<a href="https://kinsta.com/blog/php-8/" target="_blank" rel="noopener" class="mycode_url">https://kinsta.com/blog/php-8/</a><br />
<br />
Exploring PHP 8: New Features and Improvements<br />
<a href="https://www.zend.com/blog/exploring-php-8" target="_blank" rel="noopener" class="mycode_url">https://www.zend.com/blog/exploring-php-8</a><br />
<br />
--<br />
<br />
Short Closures :<br />
<a href="https://stitcher.io/blog/short-closures-in-php" target="_blank" rel="noopener" class="mycode_url">https://stitcher.io/blog/short-closures-in-php</a><br />
<br />
--<br />
<br />
PHP 8 Topic :<br />
<a href="https://github.com/topics/php8" target="_blank" rel="noopener" class="mycode_url">https://github.com/topics/php8</a><br />
<br />
--<br />
<br />
What's new in PHP 8.0 | By THe Codeholic :<br />
<a href="https://www.youtube.com/watch?v=uU1-ZqIbYes" target="_blank" rel="noopener" class="mycode_url">https://www.youtube.com/watch?v=uU1-ZqIbYes</a><br />
<br />
PHP 8 Released! My Top 5 Killer New Features<br />
<a href="https://www.youtube.com/watch?v=P5ML-Fl8sUk" target="_blank" rel="noopener" class="mycode_url">https://www.youtube.com/watch?v=P5ML-Fl8sUk</a><br />
<br />
--<br />
<br />
Linux :<br />
<br />
How to install PHP 8 on CentOS, Rhel and Fedora systems with Remi's Repo :<br />
<a href="https://blog.remirepo.net/post/2020/11/30/Install-PHP-8.0-on-CentOS-RHEL-or-Fedora" target="_blank" rel="noopener" class="mycode_url">https://blog.remirepo.net/post/2020/11/3...-or-Fedora</a><br />
<br />
Install PHP 8 alongside the default system version of PHP with Software Collections <br />
<a href="https://blog.remirepo.net/post/2020/04/10/PHP-8.0-as-Software-Collection" target="_blank" rel="noopener" class="mycode_url">https://blog.remirepo.net/post/2020/04/1...Collection</a><br />
<br />
--]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[PhpStorm Resources]]></title>
			<link>https://ninjadmins.com/topic/phpstorm-resources</link>
			<pubDate>Tue, 20 Oct 2020 11:33:25 -0400</pubDate>
			<dc:creator><![CDATA[<a href="https://ninjadmins.com/member.php?action=profile&uid=1">Michael.Sentry</a>]]></dc:creator>
			<guid isPermaLink="false">https://ninjadmins.com/topic/phpstorm-resources</guid>
			<description><![CDATA[Jetbrains PhpStorm resources list for PHP Developers. <br />
<br />
<br />
read_more<br />
<br />
--<br />
<br />
The Lightning-Smart PHP IDE <br />
<a href="https://www.jetbrains.com/phpstorm/" target="_blank" rel="noopener" class="mycode_url">https://www.jetbrains.com/phpstorm/</a><br />
<br />
Docs - Getting Started<br />
<a href="https://www.jetbrains.com/phpstorm/documentation/" target="_blank" rel="noopener" class="mycode_url">https://www.jetbrains.com/phpstorm/documentation/</a><br />
<br />
Follow PhpStorm updates on Twitter<br />
<a href="https://twitter.com/phpstorm" target="_blank" rel="noopener" class="mycode_url">https://twitter.com/phpstorm</a><br />
<br />
--<br />
<br />
A curated list of amazingly awesome PHPStorm plugins, resources and other shiny things. <br />
<a href="https://github.com/WyriHaximus/awesome-phpstorm" target="_blank" rel="noopener" class="mycode_url">https://github.com/WyriHaximus/awesome-phpstorm</a><br />
<br />
Code for the PhpStorm workshop <br />
<a href="https://github.com/JetBrains/phpstorm-workshop" target="_blank" rel="noopener" class="mycode_url">https://github.com/JetBrains/phpstorm-workshop</a><br />
<br />
--<br />
<br />
JetBrainsTV - YouTube<br />
<a href="https://www.youtube.com/user/JetBrainsTV" target="_blank" rel="noopener" class="mycode_url">https://www.youtube.com/user/JetBrainsTV</a><br />
<br />
PhpStorm Playlist :<br />
<a href="https://www.youtube.com/watch?v=LdzUfXK_-J0&amp;list=PLQ176FUIyIUYB2JG1htieA8yYqYAtKGB4" target="_blank" rel="noopener" class="mycode_url">https://www.youtube.com/watch?v=LdzUfXK_...yYqYAtKGB4</a><br />
<br />
<br />
--<br />
<br />
PhpStorm - From a Fresh Install To A Master Laravel Setup [ Christoph Rumpel ]<br />
<a href="https://www.youtube.com/watch?v=C6YzTnoGdjw" target="_blank" rel="noopener" class="mycode_url">https://www.youtube.com/watch?v=C6YzTnoGdjw</a><br />
<br />
Top 5 PHPStorm Plugins for PHP Developer<br />
<a href="https://www.youtube.com/watch?v=h18-RtRqHZY" target="_blank" rel="noopener" class="mycode_url">https://www.youtube.com/watch?v=h18-RtRqHZY</a><br />
<br />
Some PHPStorm Tips and Tricks.<br />
<a href="https://www.youtube.com/watch?v=CWiKeDtvjNk" target="_blank" rel="noopener" class="mycode_url">https://www.youtube.com/watch?v=CWiKeDtvjNk</a><br />
<br />
--<br />
<br />
PHPStorm vs VSCode for PHP Development - Full Comparison [2 hours][ Codeholic ]<br />
<a href="https://www.youtube.com/watch?v=O9nIE-40uKk" target="_blank" rel="noopener" class="mycode_url">https://www.youtube.com/watch?v=O9nIE-40uKk</a><br />
<br />
--<br />
<br />
How to be Efficient in PhpStorm :<br />
<a href="https://www.toptal.com/php/how-to-be-efficient-in-phpstorm" target="_blank" rel="noopener" class="mycode_url">https://www.toptal.com/php/how-to-be-eff...n-phpstorm</a><br />
<br />
--<br />
<br />
Be Awesome in PHPStorm | Laracasts<br />
<a href="https://laracasts.com/series/how-to-be-awesome-in-phpstorm" target="_blank" rel="noopener" class="mycode_url">https://laracasts.com/series/how-to-be-a...n-phpstorm</a><br />
<br />
--]]></description>
			<content:encoded><![CDATA[Jetbrains PhpStorm resources list for PHP Developers. <br />
<br />
<br />
read_more<br />
<br />
--<br />
<br />
The Lightning-Smart PHP IDE <br />
<a href="https://www.jetbrains.com/phpstorm/" target="_blank" rel="noopener" class="mycode_url">https://www.jetbrains.com/phpstorm/</a><br />
<br />
Docs - Getting Started<br />
<a href="https://www.jetbrains.com/phpstorm/documentation/" target="_blank" rel="noopener" class="mycode_url">https://www.jetbrains.com/phpstorm/documentation/</a><br />
<br />
Follow PhpStorm updates on Twitter<br />
<a href="https://twitter.com/phpstorm" target="_blank" rel="noopener" class="mycode_url">https://twitter.com/phpstorm</a><br />
<br />
--<br />
<br />
A curated list of amazingly awesome PHPStorm plugins, resources and other shiny things. <br />
<a href="https://github.com/WyriHaximus/awesome-phpstorm" target="_blank" rel="noopener" class="mycode_url">https://github.com/WyriHaximus/awesome-phpstorm</a><br />
<br />
Code for the PhpStorm workshop <br />
<a href="https://github.com/JetBrains/phpstorm-workshop" target="_blank" rel="noopener" class="mycode_url">https://github.com/JetBrains/phpstorm-workshop</a><br />
<br />
--<br />
<br />
JetBrainsTV - YouTube<br />
<a href="https://www.youtube.com/user/JetBrainsTV" target="_blank" rel="noopener" class="mycode_url">https://www.youtube.com/user/JetBrainsTV</a><br />
<br />
PhpStorm Playlist :<br />
<a href="https://www.youtube.com/watch?v=LdzUfXK_-J0&amp;list=PLQ176FUIyIUYB2JG1htieA8yYqYAtKGB4" target="_blank" rel="noopener" class="mycode_url">https://www.youtube.com/watch?v=LdzUfXK_...yYqYAtKGB4</a><br />
<br />
<br />
--<br />
<br />
PhpStorm - From a Fresh Install To A Master Laravel Setup [ Christoph Rumpel ]<br />
<a href="https://www.youtube.com/watch?v=C6YzTnoGdjw" target="_blank" rel="noopener" class="mycode_url">https://www.youtube.com/watch?v=C6YzTnoGdjw</a><br />
<br />
Top 5 PHPStorm Plugins for PHP Developer<br />
<a href="https://www.youtube.com/watch?v=h18-RtRqHZY" target="_blank" rel="noopener" class="mycode_url">https://www.youtube.com/watch?v=h18-RtRqHZY</a><br />
<br />
Some PHPStorm Tips and Tricks.<br />
<a href="https://www.youtube.com/watch?v=CWiKeDtvjNk" target="_blank" rel="noopener" class="mycode_url">https://www.youtube.com/watch?v=CWiKeDtvjNk</a><br />
<br />
--<br />
<br />
PHPStorm vs VSCode for PHP Development - Full Comparison [2 hours][ Codeholic ]<br />
<a href="https://www.youtube.com/watch?v=O9nIE-40uKk" target="_blank" rel="noopener" class="mycode_url">https://www.youtube.com/watch?v=O9nIE-40uKk</a><br />
<br />
--<br />
<br />
How to be Efficient in PhpStorm :<br />
<a href="https://www.toptal.com/php/how-to-be-efficient-in-phpstorm" target="_blank" rel="noopener" class="mycode_url">https://www.toptal.com/php/how-to-be-eff...n-phpstorm</a><br />
<br />
--<br />
<br />
Be Awesome in PHPStorm | Laracasts<br />
<a href="https://laracasts.com/series/how-to-be-awesome-in-phpstorm" target="_blank" rel="noopener" class="mycode_url">https://laracasts.com/series/how-to-be-a...n-phpstorm</a><br />
<br />
--]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Welcome to PHP developers forum]]></title>
			<link>https://ninjadmins.com/topic/welcome-to-php-developers-forum</link>
			<pubDate>Tue, 20 Oct 2020 11:32:59 -0400</pubDate>
			<dc:creator><![CDATA[<a href="https://ninjadmins.com/member.php?action=profile&uid=1">Michael.Sentry</a>]]></dc:creator>
			<guid isPermaLink="false">https://ninjadmins.com/topic/welcome-to-php-developers-forum</guid>
			<description><![CDATA[Welcome to our PHP developers support forum.<br />
<br />
Sharing the best resources for your PHP web application development.]]></description>
			<content:encoded><![CDATA[Welcome to our PHP developers support forum.<br />
<br />
Sharing the best resources for your PHP web application development.]]></content:encoded>
		</item>
	</channel>
</rss>