<?php
$connection = ssh2_connect('192.168.178.37', 22);

ssh2_auth_password($connection, 'root', 'mypassword');

$stream = ssh2_exec($connection, 'cd /usr/home/game');
?>
