Skip to main content

Posts

Showing posts from 2016

Concept about a Web Browser and Search Engine.

Web browser and search engine always conflict me. A few minute before i just make myself clear about the web browser and search engine.Now i am going to share with you. What is a web browser: A web browser is a software application that allows the user to access ,retrieve and view information on Internet.We can also say that Web browser is a tool that can access a Search Engine.Browser facilities is search for a specific website. The most popular Web Browsers are Google Chrome, Opera, Safari, Firefox, Internet Explorer. when a user inputing a url suppose http,htttps,ftp or files ,the browser show us information on the screen.A web Browser can reached a user to the Search Engine.Make it clear with an example: when we  use Firefox we write www.google.com and we get a new page that is google web page. We know Firefox is a browser and Google.com is a search engine. What is a Search Engine : Search  Engine is a on-line  search machine that provide the u...

PHP explode() function explained in plain English (string splitting in php)

The PHP string , Explode() function is an interesting thing. Now I am going to explain the explode() function. I don't know how much I can, but I'm trying to make it understandable to you.   Meaning of explode():  The main function of explode () is to divide a string into smaller parts and store them in an array. In this case, we should indicate by a separator where the string will break, including a limit(limit is optional). Let's think about chopping a cucumber. Suppose, cucumber is our string, the knife is our separator(delimiter), and the pieces of cucumber are array elements. The function of explode() is like chopping a cucumber.  Function signature:                       explode('delimiter',string,limit);                                               ...