Getting error php-mql is not present

Hi All,

While working on the Lab-Project of the “Shell Scripts for Beginners” module (Shell Scripts for Beginners | KodeKloud) I am getting the attached error when the checks are running to evalute my script .

" ```
php-mysql is not present


But if I am running the script manually and click on kodekloud ecom site the webpage load successfully , Below are  the script along with the db load script .
=================================


#!/bin/bash


### Install FireWallD ###

sudo yum install -y firewalld
sudo systemctl start firewalld
sudo systemctl enable firewalld
sudo systemctl status firewalld

### Install MariaDB and Condifure Firewall ###

sudo yum install -y mariadb-server
#sudo vi /etc/my.cnf
sudo systemctl start mariadb
sudo systemctl enable mariadb
sudo firewall-cmd --permanent --zone=public --add-port=3306/tcp
sudo firewall-cmd --reload

### configure DB ####

sudo mysql <<EOF
CREATE DATABASE ecomdb;
CREATE USER 'ecomuser'@'localhost' IDENTIFIED BY 'ecompassword';
GRANT ALL PRIVILEGES ON *.* TO 'ecomuser'@'localhost';
FLUSH PRIVILEGES;

EOF

sudo mysql < db-load-script.sql


### Install WebServer ####

sudo yum install -y httpd php php-mysqlnd
sudo firewall-cmd --permanent --zone=public --add-port=80/tcp
sudo firewall-cmd --reload
sudo sed -i 's/index.html/index.php/g' /etc/httpd/conf/httpd.conf
sudo systemctl start httpd
sudo systemctl enable httpd

### Download Code ###

sudo yum install -y git
sudo git clone https://github.com/kodekloudhub/learning-app-ecommerce.git /var/www/html/


sudo sed -i 's/172.20.1.101/localhost/g' /var/www/html/index.php

sudo systemctl restart httpd
==================================================

USE ecomdb;
CREATE TABLE products (id mediumint(8) unsigned NOT NULL auto_increment,Name varchar(255) default NULL,Price varchar(255) default NULL, ImageUrl varchar(255) default NULL,PRIMARY KEY (id)) AUTO_INCREMENT=1;

INSERT INTO products (Name,Price,ImageUrl) VALUES ("Laptop","100","c-1.png"),("Drone","200","c-2.png"),("VR","300","c-3.png"),("Tablet","50","c-5.png"),("Watch","90","c-6.png"),("Phone Covers","20","c-7.png"),("Phone","80","c-8.png"),("Laptop","150","c-4.png");

====================================================


Also while doing the troubleshooting I have provided permission 777 to both file .

Please provide your feedback into my issue 

Thanks


![error|624x500](upload://lB1b7DuE1BAhzMZJP8ykXXaBO8D.jpeg)

I think you need to install php-mysql not php-mysqlnd