Setting up XAMPP Mercury Mail Server to work with Thunderbird
From XAMPP start the Mercury server and click ADMINClick on Configuration at the top of the page and select 'Manage Local Users' Now type in the details of the email…
From XAMPP start the Mercury server and click ADMINClick on Configuration at the top of the page and select 'Manage Local Users' Now type in the details of the email…
Try this: Install a new version of XAMP, and copy the all the content from the folder "xampp/mysql/backup" of the broken XAMP installation into "xampp/mysql/data" of the new installation. Now…
Due to problems in Wordpress (Gutenberg), syntaxhighlighter plugin will now show && when code is posted. Without the following filter added to your template, this happens. To remove this horrible…
Allows the sending of data from a webpage to the server, after the page has loaded, and the receiving of data from the webserver, without having to reload the web…
Finding HTML elements by Id <!DOCTYPE html> <html> <head> <style type="text/css">body { background-color: Green; }</style> </head> <body> <h1 id="myH1tag">This is the inner HTML if the H1 tag</h1> <p>This is a…
Finding HTML elements using javascript document.getElementByID : finds an element with an id attribute document.getElementsByClassName : finds an element by its class name (this is HTML5 specific) document.getElementsByTagName : finds…
General terminology is: Objects - HTML elements themselves are referred to as objects. Property - is a value than can be 'set', or 'get' a value of that property. Like…
<!DOCTYPE html> <html> <body> <h1 onclick="this.innerHTML = 'You clicked'">Click on this text</h1> </body> </html> In the following example, the onclick event calls a function 'changetheText'. <!DOCTYPE html> <html> <body> <h1…
Please understand, this post is currently just a series of notes to myself, and I feel and learn my way through neural network programming. It is not a stand alone…
Large cities and towns from https://www.citypopulation.de/Europe.html Regular expressions used in Notepad++ to speed up formatting data for my SELECT queries. ^ = beginning of new line $ = end of…