PHP

Include HTML from HTML and PHP

Just before I forget, this article is about 2 great ways to load (include) HTML file from another HTML or from PHP.  Among other things I will show how to load HTLM file from WordPress text widget. Problem – Why would you need to load an HTML text file in WordPress? Say, […]

No Picture
Office and Browsers

Excel Macro to Toggle Wrap Text

This Excel macro allows changing cells in selection based on the first cell in a selection: If Selection.Cells(1, 1).WrapText = True Then Selection.WrapText = False Else Selection.WrapText = True End If   This is useful in Excel 2003 and bellow.  Starting from Excel 2007, there is a button to perform […]