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…
Detect HTML5 usage If you want to see that a website is using HTML5 elements or not, you only need to view the source of the website. If the source code starts with the following declaration. <!DOCTYPE HTML> Then, website was marked up with HTML5. By using the HTML5 DocType, you can let the browser…