Ben bu php kodu var, dosyaları başka bir sunucu ve db else barındırılan nerede
$hostname_xxx = "xxxdb.db.234141.mysqldbhosted.com";
$database_xxx = "xx11xx";
$username_xxx = "xx11xx";
$password_xxx = "xx332211xx";
$shasown = mysql_pconnect($hostname_xxx, $username_xxx, $password_xxx) or trigger_error(mysql_error(),E_USER_ERROR);
$your_ip = $_SERVER['REMOTE_ADDR'];
echo $your_ip;
$insertSQL1 = "INSERT INTO table (users_ip) VALUES ('$your_ip)";
mysql_select_db($database_xxx, $xxx);
$Result21 = mysql_query($insertSQL1, $xxx) or die(mysql_error());
The error I am getting is
Uyarı: mysql_pconnect () [function.mysql-pconnect]: 8. satırda / domains/4444.com/html/55.php in sorgusu sırasında MySQL sunucusu Kayıp bağlantı
Ölümcül hata: 8. satırda in / domains/4444.com/html/55.php sorgusu sırasında MySQL sunucusu Kayıp bağlantı
Thanks Jean