I'm new in PHP coding I'm writing new simple script but when i put this code i get blank page can some one tell me what's wrong with this code ?
<?php
if($_POST) {
$host = $_POST['host'];
if (!function_exists("ssh2_connect")) die("function ssh2_connect doesn't exist");
if(!($con = ssh2_connect("127.0.0.1", "22")))
{
echo "fail: unable to establish connection";
}
else
{
if(!ssh2_auth_password($con, "root", "password"))
{
echo "fail: unable to authenticate ";
}
else
{
$stream = ssh2_exec($con, "".$host."");
stream_set_blocking($stream, true);
$item = "";
while ($input = fread($stream,4096)) {
$item .= $input;
}
echo $item;
}
}
?>
sorry for my bad EN