[PHP] spawning scripts to different graphical targets

2002-07-18 Thread Alberto Serra
ðÒÉ×ÅÔ! Is there a way I can decide where to target my output from server side? suppose my page has two iframes +---++---+ ! A !! b ! +---++---+ while executing a script that is called by A can I spawn another script that will output to b? And no, I cant' use any Jscript, but I do know from

Re: [PHP] spawning scripts to different graphical targets

2002-07-18 Thread Martin Clifford
I would assume you just do it as if you didn't have any scripts in it in the first place. The link in frame A might be like below: a href=content.php?show=TOC target=bClick here to see the content/a Then, in frame b, content.php will show up and you can then use $show to decide what to do.

Re: [PHP] spawning scripts to different graphical targets

2002-07-18 Thread Alberto Serra
ðÒÉ×ÅÔ! Martin Clifford wrote: a href=content.php?show=TOC target=bClick here to see the content/a Looks like I was not clear in my question :) This way you just redirect *all* the outoput to another target. I need to output at more targets at the same time with one link. That is, since

Re: [PHP] spawning scripts to different graphical targets

2002-07-18 Thread Dennis Moore
I think you are SOL unless you use Javascript manage the display amongst the frames/windows. /dkm - Original Message - From: Alberto Serra [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Thursday, July 18, 2002 3:31 PM Subject: Re: [PHP] spawning scripts to different graphical targets