php logo
PHP mysqli_result Class

The PHP mysqli_result class represents the result set obtained after running a query. Sinopsis class mysqli_result implements IteratorAggregate { /* Properties */ public readonly int $current_field; public readonly int $field_count; public readonly ?array $lengths; public readonly int|string $num_rows; public int $type; /* Methods */ public __construct(mysqli $mysql, int $result_mode = MYSQLI_STORE_RESULT) public data_seek(int $offset): bool […]

Leer mas..
php logo
PHP mysqli_stmt class

The PHP class mysqli_stmt represents a prepared statement in MySQL. Sinopsis class mysqli_stmt { /* Properties */ public readonly int|string $affected_rows; public readonly int|string $insert_id; public readonly int|string $num_rows; public readonly int $param_count; public readonly int $field_count; public readonly int $errno; public readonly string $error; public readonly array $error_list; public readonly string $sqlstate; public int […]

Leer mas..
php logo
PHP mysqli class

The PHP mysqli class is the main class of the MySQLi extension of PHP. This class represents a connection to the database created with a MySQL DBMS. The following synopsis is the same as that given on PHP.net Sinopsis class mysqli { /* Propiedades */ int $affected_rows; int $connect_errno; string $connect_error; int $errno; array $error_list; […]

Leer mas..
php logo
Create a login in PHP

Firstly, keep in mind that you can have several ways to create a login in PHP; in this section, we will do one, and I will explain it. Let’s start with the style of the login, so that it has a certain visual consistency. In this case, I will do it within style tags. <style> […]

Leer mas..
php logo
OOP – Magic Methods in PHP

In PHP, there is a group of methods called magic methods that can assist when an event occurs on the object. These methods are invoked without needing to be explicitly called by you, which is why they are referred to as magic methods. Most likely, you are familiar with two of these if you have […]

Leer mas..
la categoria en-php tiene 121 post/s
Last 4 post in same category

Comments