PHP for advanced users: namespaces in PHP

Dear readers of our blog! In the last article we wrote about two methods of inserting a context advertisement using the PHP language. Today we will consider PHP namespaces, using the simple examples of programming. The good news – the Namespaces are easy. To preview we’ll challenge ourselves to explain it quickly. Let’s go.

Create class in PHP.

<?php
class Foo
{
  public function doAwesomeFooThings ()
  {
  // you should write your code here
  }
}
?>

Read more

How to remove all spam from the PhpBB forum

Dear readers of our blog! Many people today install and actively use the popular phpBB forum. A very important thing for them to know is how to work properly with this phpBB forum. For example they are interested how to change the head of the phpBB forum.

Today we will consider the removing of all unwanted messages from your phpBB forum by means administration control panel. Let us see what steps we should undertake in order to do it properly.

Contents

The administration phpBB dashboard

Read more