Ребят Всем Привет у меня такой вопрос я только начал изучать ооп
Как делать так что бы я не писаль больше
$users->getInfo();
Тк у меня может быть 1000юзеров и я не могу так написать 1000 раз что бы вывести все имя пользователя
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous">
<title>ООП</title>
</head>
<body>
<?php
class User{
public $name;
public $email;
public $city;
public $password;
public function __construct($name,$email,$city,$password)
{
$this->name = $name;
$this->email = $email;
$this->city = $city;
$this->password = $password;
}
public function getInfo(){ ?>
<table class="table">
<thead>
<tr>
<th scope="col">Имя</th>
<th scope="col">Email</th>
<th scope="col">Город</th>
<th scope="col">Пароль</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Id</th>
<td><?php echo $this->name; ?></td>
<td><?Php echo $this->email; ?></td>
<td><?php echo $this->city; ?></td>
</tr>
</tbody>
</table>
<?php }
}
$users = new User('Иван','ivanzuk761@gmail.com','Киев',143);
$users->getInfo();
$users2 = new User('Руслам','ruslam.com','mocow',6489);
$users2->getInfo();
?>
</body>
</html>