It used to get the information about number of affected rows in a previous MySQL operation like INSERT, UPDATE ,DELETE , SELECT etc.
For SELECT statements mysqli_affected_rows() is similar to mysqli_num_rows().
It will returns below values :
<?php $servername = "localhost"; $username = "root"; $password = ""; $dbname = "tutorialmines"; $conn = new mysqli($servername, $username, $password, $dbname); /* checking connection status */if ($conn->connect_error) { die("Connection failed: " . $conn->connect_error); } echo "Connected to database successfully. \n"; /* Performing INSERT operation */$sql = "INSERT INTO employee ( name, salary, age ) VALUES ( 'Emp3', '5000', '23');"; mysqli_query($conn,$sql); echo "<br>Affected rows after INSERT operation are: " . mysqli_affected_rows($conn); /* Performing UPDATE operation */$sql = "UPDATE employee SET salary = '8000' WHERE id = 7;"; mysqli_query($conn,$sql); echo "<br>Affected rows after UPDATE operation are: " . mysqli_affected_rows($conn); /* Performing DELETE operation */$sql = "DELETE FROM employee WHERE id = 7"; mysqli_query($conn,$sql); echo "<br>Affected rows after DELETE are: " . mysqli_affected_rows($conn); /* selecting all rows to see effect on affected rows */$sql = "SELECT * FROM employee"; mysqli_query($conn,$sql); echo "<br>Affected rows are: " . mysqli_affected_rows($conn); $conn->close(); ?>
Output of above code in the browser is as below:
When it comes to children, there’s one universal truth: the right toy can spark imagination, build skills, and make memories…
In today’s digital age, where screens and gadgets dominate our children’s lives, there’s something heartwarming about a well-loved plush toy…
In a world dominated by screens and fast-paced routines, it’s easy to forget the simple magic of a toy in…
In the heart of Delhi’s vibrant streets lies a world where imagination meets innovation — the magical universe of toys.…
When was the last time a toy truly amazed you—not just as a product, but as a thoughtful tool for…
In the digital age, the way we experience childhood has changed, but the essence remains the same—imagination, exploration, and joy.…