Navigacija
Lista poslednjih: 16, 32, 64, 128 poruka.

Preusmeravanje ispisa u drugi frejm

[es] :: PHP :: Preusmeravanje ispisa u drugi frejm

[ Pregleda: 1685 | Odgovora: 1 ] > FB > Twit

Postavi temu Odgovori

Autor

Pretraga teme: Traži
Markiranje Štampanje RSS

stargazer
bgd

Član broj: 85916
Poruke: 117
*.eunet.yu.



Profil

icon Preusmeravanje ispisa u drugi frejm22.10.2006. u 11:31 - pre 213 meseci
Imam sledeći frameset :

Code:

    <frameset cols="30%,*">
    <frame scrolling=no name=taskframe src=korfs.php?pgli=6 marginwidth=1 marginheight=1>
    
    <frameset rows="50,*">
    <frame scrolling=no name=headframe src=korfs.php?outfrm=10&txt=Info marginwidth=50 marginheight=1>
    <frame scrolling=auto name=outframe src=korfs.php?outfrm=0 marginwidth=50 marginheight=10>
    </frameset>
    
    </frameset>


U taskframe imam linkove koji trebaju da učitaju sadržaj u outframe, tipa :

Code:

// taskframe
<a target=outframe href=korfs.php?outfrm=0>Tu</a>

//korfs.php
switch ($outfrm){
case 0:
  echo("Sadržaj outframe-a.");
  break;
case 10:
  echo($txt);
  break;
//...
}


i to radi OK.
Međutim, ja bih da se pri ispisivanju sadržaja outframe-a ( dakle, unutar ove obrade u case 0 ) nešto ispisuje i u headframe.
KAKO?
With no lovin' in our souls and no money in our coats you can't say we're satisfied
 
Odgovor na temu

Br@nkoR
http://localhost

Član broj: 2597
Poruke: 1603

Sajt: localhost


+23 Profil

icon Re: Preusmeravanje ispisa u drugi frejm23.10.2006. u 10:59 - pre 213 meseci
JavaScript
Banned - Not available
 
Odgovor na temu

[es] :: PHP :: Preusmeravanje ispisa u drugi frejm

[ Pregleda: 1685 | Odgovora: 1 ] > FB > Twit

Postavi temu Odgovori

Navigacija
Lista poslednjih: 16, 32, 64, 128 poruka.