I have to execute a matlab file in a php file on localhost, in the php file the code is:
<?php
echo exec('matlabFunction');
?>
And in the matlabFunction file we have a testing matlab code containing
display('1');
.
But when i run my php code from localhost in wamp server, i have no results and also no errors, is there a configuration in wamp server that we should change or there is a problem in the code?