Jump to content

Reknot

Members
  • Posts

    8
  • Joined

  • Last visited

About Reknot

  • Birthday 07/05/1989

Previous Fields

  • Languages
    HTML, CSS, PHP, JavaScript(some),

Contact Methods

  • MSN
    D_man__@hotmail.com
  • Website URL
    http://reknot.no-ip.info:82/
  • ICQ
    0

Profile Information

  • Location
    Sweden

Reknot's Achievements

Newbie

Newbie (1/7)

0

Reputation

  1. Worked Beautifully ! thanks a thousand =)
  2. ...So I sat at school. thinking about my problem and figured; Ive been explaining the wrong thing. I want to change another Iframe from another Iframe in Index file. simple as that. I know how frames work, but i need to do like jump out of the I frame and then into another
  3. Yeah, sorry fro the server thats been down. Its been refrmated and loded with some more Ram memory. should be up again. Both you you kinda... has wrong *-)
  4. Okay, I am going to try to make you understand. I want to link, from an iframe on one of sub-html (not index.html) to an other iframe on my index.html... Is there any way possible? Check my page out : http://reknot.no-ip.info:82/ In the "filmer" - "olsson" part. If you click a movie you will see it underneath the thumbnail. But i want it to be shown in the Scroll window, in upper left corner. any sugestions ?
  5. Reknot

    Film gallery.

    Sorry for dubble post :s
  6. Reknot

    Film gallery.

    Works Perfect, thanks alot for the help all =D but, 92 views and 2 replys pplz are lazy. Thanks alot MrAdam and justsomeguy Cheers on you both!
  7. Reknot

    Film gallery.

    AH, sweet! Thanks =)alltough "<a href="videoiframe.php?id=<?php echo urlencode("http://reknot..no-ip.info:82/Media/Filmer/Olsson/06/1.3gp"); ?>" target="videoiframe"><img src="_Thumbs/1a.jpg" /></a>"didn't exactly worked as intended. Had to fix to;"<a href="../../../videoiframe.php?id=http://reknot.no-ip.info:82/Media/Filmer/Olsson/06/1.3gp" target="videoiframe"><img src="_Thumbs/1a.jpg" /></a>"Thanks alot for the reply justsomeguyThe problem im faceing now is that my <object> code doesnt work. Object Code;<object width="170" height="150" classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab"> <param name=autoplay value=true> <param name=controller value=true> <embed src="<?php $id=$_GET["id"]; echo $id?>" width="170" height="150" autoplay=true controller=true pluginspage=http://www.apple.com/quicktime/download/> </embed></object>Again, it works perfect in firefox but IE wont play it. I think its a Parameter I've missed, am I right? It gets the ID correct but just wont play. Gets stuck with Quicktime logo with a question mark. Over it...
  8. Reknot

    Film gallery.

    Okay, I got this small problem... I got a site with a video gallery. I have done it in an easy way; Done thumbnails and done a form in HTML witch I've assigned the input as and type="image". HTML code; <form method="post" target="videoiframe" action="http://reknot.no-ip.info:82/videoiframe.php"> <input name="id" type="image" src="_Thumbs/1a.jpg" class="vidthumbs" value="http://reknot..no-ip.info:82/Media/Filmer/Olsson/06/1.3gp"></form>Code in videoiframe.php ;<?php $id=$_POST['id'];echo "<object width=160 height=144 classid=clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B codebase=http://www.apple.com/qtactivex/qtplugin.cab> <param name=autoplay value=true> <param name=controller value=false> <embed src=".$id." width=160 height=144 autoplay=true controller=false pluginspage=http://www.apple.com/quicktime/download/> </embed> </object>";?>It works great in FF, but doent work in Internet explorer. If I "Show source" in my Iframe it shows "...<embed src= width=160 height=144" in IE. Like IE's PHP doest get the Value from HTML. Ive tried to send only numbers but it still doesn't work in IE. Any help, or other ways of doing it. I could get an Database with all the paths, but... yeah.
×
×
  • Create New...