Difference between assigning a variable to NULL and unset. A variable is considered to be NULL if It has been assigned the constant NULL. It has not been set to any value yet. It has been unset(). Setting a variable to NULL means assigns the value NULL to the variable exactly as the variable is…
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…
Before 3 Days, A task assigned to me. Task is related to vPress CorePrint API (Web2Print service). In that what I have to do is, Client has uploaded lots of products in vPress coreprint. The products are 3 types photo frames, wallpapers strips and one more. Client have provided me a PDF for understanding…
Hot linking can also be called as “leeching” or “bandwidth theft” is a term referring to when a webpage of one website is direct linking to the images/videos or other multimedia files on the web host of another website (usually without permission, thus can be called as stealing bandwidth). E.g. Like an <img alt=””…
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”.…
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…