PHP: What is the difference between split and explode php?
Difference between split and explode php Do you know what is the main difference between split() and explode()? No worries 🙂 , the main difference in split() and explode is the way, it uses to splitting a large string.   Both the functions are used to Split a string. However, Split is used to split a…

Interesting and amazing bugs in WINDOWS OS
Bugs are the truth of every developer. Even the windows developed by IT Giant Microsoft have also some bugs in it. May be you have noticed or not. Check it out it’s interesting and magical 🙂   MAGIC #1   Nobody can create a FOLDER anywhere on the Computer which can be named as “CON”.…

Test and debug your code online
During program or code development we face lot of issues and bugs and in between we need some debugging. In PHP there is not a easy way to debug the page line by line, so you have to use ‘echo’,’die’,’print_r’,’var_dump’ like functions for debugging.   It take a little bit more time to open the… (1 comment)