Skip to main content

How do I delete pages on Facebook

“Is there a way I can delete pages I’ve created on Facebook?”



Here’s how to delete Facebook pages:

1. Log into your Facebook account.

2. Head over to the page you want to permanently remove.

3. Now that you are on the page, click on ‘Edit Page’ located near the top of the page.



4. Click on ‘Manage Permissions’ from the drop-down menu.



5. Scroll down near the bottom of the page, click on ‘Delete (your page name goes here)’.



6. A dialog box will appear, confirm the deletion by clicking ‘Delete’.

Comments

Popular posts from this blog

Hacking website using SQL Injection -step by step guide

Database: Database is collection of data. In website point of view, database is used for storing user ids,passwords,web page details and more. Some List of Database are: * DB servers, * MySQL(Open source), * MSSQL, * MS-ACCESS, * Oracle, * Postgre SQL(open source), * SQLite, SQL: Structured Query Language is Known as SQL. In order to communicate with the Database ,we are using SQL query. We are querying the database so it is called as Query language. Definition from Complete reference: SQL is a tool for organizing, managing, and retrieving data stored by a computer database. The name “SQL” is an abbreviation for Structured Query Language. For historical reasons, SQL is usually pronounced “sequel,” but the alternate pronunciation “S.Q.L.” is also used. As the name implies, SQL is a computer language that you use to interact with a database. In fact, SQL works with one specific type of database, called a relational database. Simple Basic Queries for SQL: Select * from table_name : this s...

How to Make a Video Game With Cmd

Here is a free, easy, no-download way to make a video game. You will learn a little bit about batch programming in the process. You'll need to supply your own story to go with this game. Steps Anything in apostrophes can be changed, it won't affect the game - don't accidentally type it in to the actual code. Open Notepad or any other coding programs-Geany, Notepad++, etcetera. Save the file as ‘My Game’.bat Start the Code. Start by typing: @echo off title ‘My Game’ color 0A if "%1" neq "" ( goto %1) pause Add Colours. Now save it and run, it will come up with an error and all the different colour combinations. Find the one you like and type it in after “color”, instead of “zz”. A good combination is color 0A, it makes the text green and the background black. Create the Menu. To create the menu get rid of pause and type in: :Menu cls echo ‘1. Start’ echo ‘2. Instructions’ echo ‘3. Exit’ set /p answer=‘Type the number of your option and press enter.’ if %a...

Types Of Hackers

Types of Hacker Let's see the categories of Hackers on the basis on their knowledge. Coders 1. The Real Hackers are the Coders, the ones who revise the methods and create tools that are available in the market. Coders can find security holes and weaknesses in software to create their own exploits. These Hackers can use those exploits to develop fully patched and secure systems. 2.Coders are the programmers who have the ability to find the unique vulnerability in existing software and to create working exploit codes. These are the individuals with a deep understanding of the OSI Layer Model and TCP/IP Stacks. Admins 1. Admins are the computer guys who use the tools and exploits prepared by the coders. They do not develop their own techniques, however they uses the tricks which are already prepared by the coders. They are generally System Administration, or Computer Network Controller. Most of the Hackers and security person in this digital world come under this category. 2. Admins h...