M. Niyazi Alpay
M. Niyazi Alpay
M. Niyazi Alpay

I've been interested in computer systems since a very young age, and I've been programming since 2005. I have knowledge in PHP, MySQL, Python, MongoDB, and Linux.

 

about.me/Cryptograph

  • admin@niyazi.org
C# For and While Loops

C# For and While Loops

Hello, I'm starting with the same topic as my PHP For and While Loops tutorial because fundamentally everything is the same. Loops are used to perform repetitive tasks. Initially, it may seem meaning

PHP For and While Loops

PHP For and While Loops

Loops are used to perform repetitive tasks. Initially, it may seem meaningless, but if you have a web page with 100 members, you can finish your work in three lines using a loop instead of writing the

Listing Users by Number of Topics in Mysql

Listing Users by Number of Topics in Mysql

We have two different tables, one for topics opened and the other for users.In the system, the id information of the user who opens the topic is also kept in the table where the topics are found.In th

Running a Query in C# Database

Running a Query in C# Database

In C#, we use the SqlCommand command to execute queries in the database. Since I will continue with MySQL for our example, I will use the MySqlCommand command. Start a new Windows Forms application a

C# Variable Definition and If - Else Structure

C# Variable Definition and If - Else Structure

In C#, we declare variables according to their types, such as number type, text type, and so on. We determined that "int a;" will be an integer type for the variable named 'a'.We determined that "str

PHP In-site Search Engine Construction

PHP In-site Search Engine Construction

Sometimes we need a simple search engine within our websites to find topics. Let me explain this with a simple example: HTML codes for the form that will perform the search: <form action="result.ph

PHP - Connecting to MySQL Database and Reading Information (Illustrated Explanation)

PHP - Connecting to MySQL Database and Reading Information (Illustrated Explanation)

The database we will connect to: ornek_veritabani We have created our database and our table named isim_listesi. We defined the type of the column named id as int, which means integer, and defined

Batch Configuration of Directory and File Permissions for Web Sites on Linux Server

Batch Configuration of Directory and File Permissions for Web Sites on Linux Server

Setting file and directory permissions for websites on a Linux server can sometimes be time-consuming. For example, when using FileZilla with the option to apply to subdirectories selected, or when ap

Laravel Blog System - AlphaBlog

Laravel Blog System - AlphaBlog

I have completed developing a blog system for my own website in my spare time, and I have open-sourced it on my Github account. This blog system was developed with Laravel and MongoDB was used as the

PHP Object Oriented Programming

PHP Object Oriented Programming

Object-oriented programming (OOP) is a technology used for software development. OOP facilitates component programming with its standards. C# is a language based on OOP. There are many objects availab