Skip to main content

How to Chat with Someone in Whats App After Blocked

 How to Chat with Someone in Whats App After Blocked

1 I am going to share the easiest way to chat with someone who has blocked you in Whats App.

We have shared plenty of Whats App tricks, and if you haven’t checked them yet, we recommend to check them out so that you can use Whats App at full extent.

Now I don’t even want to know the reason why your friend/girl friend/boy friend/husband/wife etc etc blocked you in Whats App but I do know that you are desperate to be in touch with them which is why you are reading this.

whats app-blocked

How would you know if someone blocked you in Whats App?

Now basically, if you are blocked in someone’s list then there are some indicator tests to check this.

    You won’t be able to see their profile picture.
    You won’t be able to see their status update.
    Whenever you send them a Message, it won’t be delivered. (Means you will only see 1 tick)

How do you contact with the person who clocked you then ?

There are 2 methods to achieve this and trust me this works 100% from any mobile or device.

Number 1.

Tell your friend to make a group and tell him to add both you and the person who blocked you. Simple.

When he is done adding you both, you can leave a message on that group and that person will be able to read your message and if that person leaves any message then you will be able to read it as well.

This is one of the easiest way you can do this.

Number 2. Get  a new SIM card. This is very simple as well. Just get a new SIM card, uninstall Whats App and reinstall it again and register with the new number.

Add that person’s number in your phone and message them. You will be able to see their picture and status if they didn’t make their account private but they will be able to read your message without any problem.

Hope this helps.

Comments

Popular posts from this blog

How can make a comment in php?

Comments: In PHP code, Comment is a line that is not executed but it helps to other to understand what are you doing in program and why you are using the comment line or it's work as a  reminder to know what you did in the program last time.      But there is many types of comment line like single line and multi line comments:  Example for Single line comment:   <?php     echo "<p>Hello my Friends</p>";   //This is a single-line comment   echo "<p>You will be a good please read all my blogs</p>"; ?> Here is another exaple of Multiple line comment "  example : <!--          --> <?php      <!--   echo "<p>Hello my Friends</p>";     echo "<p>Hello my Friends</p>"; -->        echo "<p>Hello my Friends</p>";     echo "<p>Hello my Friend...

Apache Hadoop

What Is Apache Hadoop? The Apache   Hadoop project develops open-source software for reliable, scalable, distributed computing. The Apache Hadoop software library is a framework that allows for the distributed processing of large data sets across clusters of computers using simple programming models. It is designed to scale up from single servers to thousands of machines, each offering local computation and storage. Rather than rely on hardware to deliver high-availability, the library itself is designed to detect and handle failures at the application layer, so delivering a highly-available service on top of a cluster of computers, each of which may be prone to failures. The project includes these modules: ·          Hadoop Common : The common utilities that support the other Hadoop modules. ·          Hadoop Distributed File System (HDFS) : A distributed file system that provides high-thr...

TWO DIMENSIONAL DATA IN TABULAOR FORM

Now Friends if your concept about array is cleared  so now  we can try to excute this 2D array in tabular form , that we clearly  understand  how data stores in an array  This is very easy concept I am sharing  to understand  how can we store the data in 2D array . For example:  <html > <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>2D array</title> </head> <body> <?php error_reporting(0); $x=array( data_1=>array('name'=>'suraj kumar', 'dob'=> '20.10.1980', 'age'=> '30','salary'=>50000), data_2=>array('name'=>'Amit kumar', 'dob'=> '22.1.1990', 'age'=> '30','salary'=>40000), data_3=>array('name'=>'pankaj kumar', 'dob'=> '02.12.1990', 'age'=> '30','salary'=>20000), data...