Skip to Content

Marcel Iseli

Hey guys! It's me, Marcel, aka Maschi. On MaschiTuts, it's all about tutorials! No matter the topic of the article, the goal always remains the same: Providing you guys with the most in-depth and helpful tutorials!

Today, we will shed light on the topic “Which one of these is the least like the others?, when the possible choices are Javascript, PHP, Ruby, Python, and MySQL. Let’s dive right in.    Which one of these is the least like the others? JavaScript, PHP, Ruby, Python MySQL MySQL is the least like the …

Read More about Which is the odd one out? JS, PHP, Ruby, Python, MySQL

Today, we will discuss how to save HTML form data to a text file using PHP. While using HTML, we often use forms to capture some data from users. We usually store this captured data into the database, but sometimes we need to keep this captured data into a text file. Captured data may be …

Read More about How to save HTML form data to a text file using PHP

Today, we will shed light on “How to square a number in JavaScript.” Please note that the number may be provided as a constant assigned to a variable or can be provided dynamically using a form. We will be writing a general JavaScript program to square any number irrespective of it being positive or negative. …

Read More about How to Square a Number in JavaScript — Complete Guide

Today, we will learn how to fix “php using $this when not in object context”. This is one of the common issues new PHP developers face.   What Is $this $this is a pointer referring to the current object of the class. Current object means object currently using the function. There could be many objects …

Read More about PHP Using $THIS When Not In Object Context