Daily Archives: September 18, 2010

A to Z PHP and MySQL Tutorial

PHP MySQL Connect to a Database Create a Connection to a MySQL Database Before you can access data in a database, you must create a connection to the database. In PHP, this is done with the mysql_connect() function. Syntax mysql_connect(servername,username,password); Parameter Description servername Optional. Specifies the server to connect to. Default value is “localhost:3306” username […]

Microsoft Word – Enabling Macro Protection

Instructions for Word running on a Windows machine: Word 2000 Start Word Click on Tools, highlight Macro and click on Security Click on either Medium or High to select it Click on OK Click on OK again to close out of the options menu Word 2002 (XP) / 2003 Start Word Click on Tools and select Options Select the Security tab and click on the Macro […]

Remove All Hyperlinks in MS Word or Excel

Ever copy and paste something from the Internet and then into Word only to get the hyperlinks embedded? You can removed them easily with the Macros below. Word Hit [ALT]+[F11] to open the Visual Basic Editor Go to “Insert” > “Module” and in the pop-up window copy: Sub RemoveHyperlinks() Dim oField As Field For Each […]