php in href will nicht

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • php in href will nicht

    Ich bin kein grosser Programmierer aber so ähnliche Probleme
    habe ich schon gelöst.Nur diesmal wills nicht.
    Wer schaut mal ebn über mein Script ???
    Alles funktioniert,nur die in php eingesetzte IP Nummer sowie das Verzeichniss will einfach nicht klappen.
    Das ganze läuft auf meinem Webserver unter W2000.
    Danke
    <html>
    <head>
    <title>Live Web Camera</title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    </head>
    <center>
    <BODY bgcolor="#000547" text="FFFFFF">
    <a href="http://www.teveo.com/">
    </a>
    <table><tr><td>
    <applet code="Jload"
    align="baseline" width="325" height="268"
    archive="Jload.jar" name="Jload">
    <param name="frameduration" value="40">
    <param name="upscale" value="true">
    <param name="center" value="true">
    <param name="background" value="9999ff">
    </applet>
    </td></tr></table>
    </body><br>
    <?
    $myip = gethostbynamel ($host);
    $myip = $myip[1];
    $Verz="/tools/TeveoLive/Close_TeveoLive.php";
    $MIP=$myip.$Verz;
    $VImages="/images/bt_home.gif";
    $VI=$myip.$VImages;
    ?>
    <a href="http://<? echo $MIP;?>">
    <img src="http://<? echo $VI;?>" alt="zurueck zum Hauptmenue" border="0"></a>
    </center>

  • #2
    $myip = gethostbynamel ($host);

    muss

    $myip = gethostbyname($host);

    heißen
    webmaster @ php-abc.de

    Comment

    Working...
    X