1-10 of 165 hubssort by Hot Best Latest

79

PHP Variable Scope Basics

IntroductionThis is part 12 of my series, Basics of PHP. When you declare a variable outside a function, it may not be seen in the function. When you declare a variable inside a function, it may not be seen...

0 comments    php basic scope
84

Strings and the JavaScript Eval Function

IntroductionThis is the third last part of the series, Mastering the JavaScript eval Function. In this part of the series, we see how a string can be used as argument to the eval function. String Literal in...

1 comment    javascript function eval
76

XHTML Tags and Attributes

IntroductionThis is the fourth part of my series, XHTML Basics. In this part of the series, we look at XHTML tags in more details. Single Tag Elements and Double Tag ElementsAn element is made up of either a...

0 comments    tags xhtml attribute
60

Creating and Deleting Directory in PHP

IntroductionThis is part 2 of my series, PHP Directory Function Basics. In this part of the series, you learn how to create and delete sub directories in PHP. Note: If you cannot see the code or if you think...

2 comments    make create directory
70

Code Explanation for Commercial Horizontal Web Page Menus

IntroductionThis is part 3 of my series, Commercial Horizontal Web Page Menus. In this part of the series, we look at the code for the example. The multidimensional array described in the previous part is...

0 comments    code web page explanation
72

Building JavaScript String Regular Expressions

IntroductionThis is part 6 of my series, JavaScript String Regular Expressions. Many of the examples we have come across are simple examples. In this section we look at two examples that are more demanding....

0 comments    build javascript string
77

Right Operand and the JavaScript eval Function

Introduction This is what is in the JavaScript 1.5 specification about the eval() function:The argument of the eval function is a string. If the string represents an expression, eval evaluates the...

0 comments    javascript function eval
75

Guide to HTML Layout

IntroductionLayout means where you place what. From a technical point of view it also means what element do you use for a purpose and where.A containing block is a containing element. A containing element is...

0 comments    guide html layout
86

Web Page Design for All Resolutions

IntroductionYou might have noticed that some web pages display well in one resolution and poorly in another resolution. For the same web page, in one resolution the distance between some HTML elements may be...

1 comment    web design resolution
80

CSS Fixed Positioning Solution to one of the Frame Problems

IntroductionSearch engines do not work well with pages that have HTML Frames. HTML frames serve two purposes: 1) To keep a panel of the web page fixed while another is scrolled. 2) To keep a panel fixed,...

0 comments    solution css frame
working