Scrollbar shifts html content
As soon as your content exceeds the screen viewing area, a browser will automatically insert scrollbars to allow you to navigate up and down. However when that happens, the content is shifted to the left, … Read more
Programming
As soon as your content exceeds the screen viewing area, a browser will automatically insert scrollbars to allow you to navigate up and down. However when that happens, the content is shifted to the left, … Read more
If you are interested in knowing the ins and outs of a web browser, you have to check these couple links below. http://www.html5rocks.com/en/tutorials/internals/howbrowserswork/ http://taligarsiel.com/Projects/howbrowserswork1.htm
I am not going to be too verbose on this one because there is no reason to. Both echo and print do the same thing with the exception that: 1. “echo” seems to be faster … Read more
If your html looks like “ycsoftware †categories“, you will need to use the ICONV function to convert the string to something that humans can read. $str = iconv(“UTF-8”, “ISO-8859-1//TRANSLIT”, $str); Your result should look … Read more
What is the meaning of curly braces in PHP? In PHP curly braces are used to explicitly indicate the end of a string. for example let’s say you have this: $computer = ‘computer’; if i … Read more