kostenloser Webspace werbefrei: lima-city


Zwei in einer PHP-Seite

lima-cityForumProgrammiersprachenPHP, MySQL & .htaccess

  1. Autor dieses Themas

    trancedrome

    trancedrome hat kostenlosen Webspace.

    Moinsen ^^
    ich hab mal wieder ne Problem 2 PHP-Seiten zu einer zu machen....bekomms wieder nicht hin !

    Kann mir das mal eben einer machen?
    Danke im Vorraus!

    MfG Trancer

    Index.php
    <?
      $movbreite = "640";
      $movhoehe = "500";
    
      $avibreite = "320";
      $avihoehe = "240";
    ?>
    <a href="javascript:void();" onClick="window.open('Video.php?name=Video&format=mov','smiliewin','width=<? echo $movbreite; ?>,height=<? echo $movhoehe; ?>,scrollbars=no,location=no,status=no');location.reload();">Video.mov</a>
    <a href="javascript:void();" onClick="window.open('Video.php?name=video49&format=avi','smiliewin','width=<? echo $avibreite; ?>,height=<? echo $avihoehe; ?>,scrollbars=no,location=no,status=no');location.reload();">Video49.avi</a>


    Video.php
    <?
    if($format == "mov")
      {
      $breite = "640";
      $hoehe = "460";
      } 
    elseif($format == "avi")
      {
      $breite = "320";
      $hoehe = "240";
      } 
    ?>
    <head>
    <script language=JavaScript>
    var message="";
    function clickIE() {if (document.all) {(message);return false;}}
    function clickNS(e) {if 
    (document.layers||(document.getElementById&&!document.all)) {
    if (e.which==2||e.which==3) {(message);return false;}}}
    if (document.layers) 
    {document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}
    else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}
    </script> 
    </head>
    
    <title>Video von Trancedrome</title>
    <style type="text/css">
    <!--
    body,td,th {
    	color: #FFFFFF;
    }
    body {
    	background-color: #000000;
    }
    a:link {
    	color: #00FF00;
    	text-decoration: none;
    }
    a:visited {
    	text-decoration: none;
    	color: #00FF00;
    }
    a:hover {
    	text-decoration: underline;
    	color: #00FF00;
    }
    a:active {
    	text-decoration: none;
    	color: #00FF00;
    }
    -->
    </style>
    <body leftmargin="0" topmargin="0">
    <p><embed src="<? echo $name.'.'.$format ?>" name="Video" type="video/<? echo $format ?>" autostart="ture" width="<? echo $breite ?>" height="<? echo $hoehe ?>"></embed>
    <table width="99%"  border="0">
      <tr>
        <td>
    	<div align="center">
    	<?
        if($format == "mov")
        {
        echo '<a href="javascript:document.embeds[0].play()">Starten</a> <a href="javascript:document.embeds[0].stop()">Stoppen</a>';
        }
        elseif($format == "avi")
        {
        }
        ?>
    	</div>
    	</td>
      </tr>
    </table></p>
  2. Diskutiere mit und stelle Fragen: Jetzt kostenlos anmelden!

    lima-city: Gratis werbefreier Webspace für deine eigene Homepage

  3. Hi!

    Ich habe alles in die index.php File geschrieben:

    index.php:
    <?
    
    if ($seite!='video') {
    
    ?>
    <?
      $movbreite = "640";
      $movhoehe = "500";
      $avibreite = "320";
      $avihoehe = "240";
    ?>
    <a href="javascript:void();" onClick="window.open('index.php?seite=video&name=Video&format=mov','smiliewin','width=<? echo $movbreite; ?>,height=<? echo $movhoehe; ?>,scrollbars=no,location=no,status=no');location.reload();">Video.mov</a>
    <a href="javascript:void();" onClick="window.open('index.php?seite=video&name=video49&format=avi','smiliewin','width=<? echo $avibreite; ?>,height=<? echo $avihoehe; ?>,scrollbars=no,location=no,status=no');location.reload();">Video49.avi</a>
    <?
    
    } else {
    
    ?>
    
    <?
    
    if($format == "mov")
    
      {
    
      $breite = "640";
    
      $hoehe = "460";
    
      }
    
    elseif($format == "avi")
    
      {
    
      $breite = "320";
    
      $hoehe = "240";
    
      }
    
    ?>
    
    <head>
    
    <script language=JavaScript>
    
    var message="";
    
    function clickIE() {if (document.all) {(message);return false;}}
    
    function clickNS(e) {if
    
    (document.layers||(document.getElementById&&!document.all)) {
    
    if (e.which==2||e.which==3) {(message);return false;}}}
    
    if (document.layers)
    
    {document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}
    
    else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}
    
    </script>
    
    </head>
    
    
    
    <title>Video von Trancedrome</title>
    
    <style type="text/css">
    
    <!--
    
    body,td,th {
    
        color: #FFFFFF;
    
    }
    
    body {
    
        background-color: #000000;
    
    }
    
    a:link {
    
        color: #00FF00;
    
        text-decoration: none;
    
    }
    
    a:visited {
    
        text-decoration: none;
    
        color: #00FF00;
    
    }
    
    a:hover {
    
        text-decoration: underline;
    
        color: #00FF00;
    
    }
    
    a:active {
    
        text-decoration: none;
    
        color: #00FF00;
    
    }
    
    -->
    
    </style>
    
    <body leftmargin="0" topmargin="0">
    
    <p><embed src="<? echo $name.'.'.$format ?>" name="Video" type="video/<? echo $format ?>" autostart="ture" width="<? echo $breite ?>" height="<? echo $hoehe ?>"></embed>
    
    <table width="99%"  border="0">
    
      <tr>
    
        <td>
    
        <div align="center">
    
        <?
    
        if($format == "mov")
    
        {
    
        echo '<a href="javascript:document.embeds[0].play()">Starten</a> <a href="javascript:document.embeds[0].stop()">Stoppen</a>';
    
        }
    
        elseif($format == "avi")
    
        {
    
        }
    
        ?>
    
        </div>
    
        </td>
    
      </tr>
    
    </table></p>
    
    <?
    }
  4. Diskutiere mit und stelle Fragen: Jetzt kostenlos anmelden!

    lima-city: Gratis werbefreier Webspace für deine eigene Homepage

Dir gefällt dieses Thema?

Über lima-city

Login zum Webhosting ohne Werbung!