Hi there i am using the exec() function to execute a game server and its all working but the only problem is that the process is running in the background and it should open up a console i have seen an answer to how to stop it running in the background but i couldnt find it on the search so thought id ask instead
This is my existing code
<?php
$output = `"C:\Program Files\EA GAMES\Call of Duty\CoDMP.exe" +set dedicated 2 +exec dedicated.cfg +map_rotate`;
echo "<pre>$output</pre>";
echo "Your Server Has Been Started"
?>