I setup a Cloudflare Tunnel and changed the URL for WordPress from an IP address to a domain name. After that, the frontend worked fine,…
About These TutorialsLearning is important. The more you learn the more you enrich your mind and can improve your life. These tutorials are written to help those who are just starting out. Visual BASIC, C++, and Fundamentals of Programming are beginner tutorials to get started on your programming journey. These were written to the best of my understanding of the subject at the time of writing. Some items may be outdated and there is a possibility of things being changed since it was written. More tutorials will be written as time allows. |
I setup a Cloudflare Tunnel and changed the URL for WordPress from an IP address to a domain name. After that, the frontend worked fine,…
Ideally when upgrading WordPress or adding plugins, you would just be able to hit a button and it would download and install without issue. Unfortunately,…
For web developers and IT professionals, encountering PHP errors is an inevitable part of the development process. Understanding how to identify, troubleshoot, and resolve these…
We touched on variables in our last post we touched on variables and default values inside of functions. Variables can be used to store numbers…
A JavaScript function is a block of code that is made to do a task. Functions can be called over and over again to reuse…
A ternary operator is a concise way to perform conditional logic within a single line of code. It is often used as a shorthand for…
Errors in coding happens, it can be a missing semicolon, an undefined function, or even a duplicate function caused by your code or conflicting plugins,…
An alert box is a pop-up message box that displays an alert message to the user. It can be used to inform the user about…
When using JavaScript, a lot of times it will be in combination with other languages, like HTML and CSS. JavaScript can be written in three…
JavaScript is the most popular programming language in the world, being used by millions of developers all over the world.. It is a programming language…
In any programming language, commenting your code is important. This is especially true in PHP when you more than likely will have code being looked…
Web development is in simple terms, creating websites. Creating tutorials for web development can be tricky because there isn’t one language to do it. Just…