
PHP Data Object - PDO
I had explained how to connect to a database and execute queries in PHP.Classic database connection is done with the mysql_connect() command, and query execution is done with mysql_query(), but the PDO structure is a bit...
Found 6 results for this tag.

I had explained how to connect to a database and execute queries in PHP.Classic database connection is done with the mysql_connect() command, and query execution is done with mysql_query(), but the PDO structure is a bit...

Hello, in the previous tutorial, I explained how to use the image upload and resizing class. In this tutorial, I'll show you how to upload multiple images using the same class. First, let's create an empty HTML file and...

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 available in C#, and progra...

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 "string b;" will be a st...

Hello, I'm going to show you the image resizing and uploading class I've prepared. In my previous post, I talked about object-oriented programming. The topic I'm going to explain now is a class for image resizing and upl...

What is C#? As you know, there are programs that we use to use our computers comfortably and programming languages are needed to make these programs. The most popular of these languages are Basic, C, C++, Pascal, Java an...