About PHP shows up an other version than installed on the server

I am wondering about the version indication in About PHP
Due to Dolibarr my PHP version is 7.4.20
But my server installation is definitively 7.3.28
and via teminal (php --version) I get it confirmed it is version 7.3.28 and not 7.4.20 as dolibarr read - So what is going wrong here ?

If you are using Linux, there is a possibility of having different PHP versions on the same server. Try creating a phpinfo.php page in your html root folder with below code

<?php phpinfo(); ?>

save and run.

It will display the PHP version that your webserver is using which is taken by dolibarr.

if this solves your problem, kindly check the “solution” check box so that it may be useful to others who are searching for similar issue.

thanks !
yesbee.