A voir également:
- Acces fichier sur un serveur de donnée en php
- Fichier rar - Guide
- Comment ouvrir un fichier epub ? - Guide
- Comment réduire la taille d'un fichier - Guide
- Ouvrir un fichier .bin - Guide
- Fichier host - Guide
3 réponses
slt,
de ton PC tu vois le serveur par le reseau ?
si oui: tu mets le chemin avec
\\nom du serveur\...
sinon t'es dans l'impasse
de ton PC tu vois le serveur par le reseau ?
si oui: tu mets le chemin avec
\\nom du serveur\...
sinon t'es dans l'impasse
je le voi
le ping marche
voila mon code
<html>
<head></head>
<body>
<?
set_time_limit(0);
$fp = fsockopen("xx.xxx.x.x", 20221, $errno, $errstr);
if(!$fp)
echo "$errstr ($errno)<br>\n";
else {
fputs($fp,"GET / HTTP/1.0\n\n");
while(!feof($fp))
{
echo fgets($fp,128);
}
fclose($fp);
}
?>
</body>
ca me renvoit faux a chaque fois
le ping marche
voila mon code
<html>
<head></head>
<body>
<?
set_time_limit(0);
$fp = fsockopen("xx.xxx.x.x", 20221, $errno, $errstr);
if(!$fp)
echo "$errstr ($errno)<br>\n";
else {
fputs($fp,"GET / HTTP/1.0\n\n");
while(!feof($fp))
{
echo fgets($fp,128);
}
fclose($fp);
}
?>
</body>
ca me renvoit faux a chaque fois