Home

Solutions to the most common problems developers encounter with!

This website aims at providing the solutions to the most common problems developers encounters while building an application. Sometimes they make mistakes and sometimes. I have made a collection of those problems i had and serving here with solutions for the budding developers.

<?php
        $answer = '';
        $solutionFounded = false;
        while(!solutionFounded)
        {
             if($answer == "Whatever i needed")
             {
                  solutionFounded = true;
             }
             else
             {
                  echo "Go through thisishow.in";     
             }
        }
?>
Scroll to Top