[PHP] php, frames

2002-11-16 Thread Adrian Partenie
Hello, I could use some help. I have two framed pages, upperframe.html and lowerframe.html. In upper frame.html: echo table border=1; echo trtd/tdtdID/tdtdSubject/tdtdOpen/tdtdClose/td/tr; while($row = MySQL_fetch_array($result)) { echo trtdforminput type=\checkbox\ method=\post\

Re: [PHP] PHP Frames?

2002-02-25 Thread William Lovaton
You have to pass the params received in index.php to the rest of the pages in the frames... eg: http://mysite.com/index.php?s=1 so, the index.php script will looks something like this: frameset cols=* rows=25%,* border=1 frameborder=1 frame src=head.php? print ?s=$s ? name=menu; frame

[PHP] PHP Frames?

2002-02-24 Thread Jason Caldwell
I'm trying to pass vars into a php (html) file that uses FRAMES -- top, main and bottom. The TOP frame has my menu items. The MAIN frame will show the pages, and the BOTTOM frame will have my footer stuff -- Now, when I click on a menu item in the TOP frame I want the TOP and MAIN frames to

[PHP] PHP FRAMES Question

2001-11-15 Thread Miles Thompson
This has probably been dealt with before, but I'm unable to get my link to open in the target frame, it always opens in the same frame. This line of code: printf(a href=\ %s?member_id=%s target=sub_detl \ %s /a \n, $target_url, $myrow[member_id], $myrow[member_id]); typically expands, when

Re: [PHP] PHP FRAMES Question

2001-11-15 Thread Sam Masiello
Thompson [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, November 15, 2001 12:41 PM Subject: [PHP] PHP FRAMES Question This has probably been dealt with before, but I'm unable to get my link to open in the target frame, it always opens in the same frame. This line of code: printf(a href

Re: [PHP] PHP FRAMES Question

2001-11-15 Thread Miles Thompson
Richard, Thanks. I missed that completely. Miles At 09:47 AM 11/15/01 -0800, Richard S. Crawford wrote: Try: printf(a href=\%s?member_id=%s\ target=\sub_detl\%s/a\n,$target_url, $myrow[member_id],$myrow[member_id]); The target attribute must be outside of the quotes which contain the URL