Computing.Net > Forums > Programming > open a page in a table column not a

Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.

open a page in a table column not a

Reply to Message Icon

Name: HD
Date: October 25, 2003 at 22:02:17 Pacific
OS: linux
CPU/Ram: 512/1200
Comment:

I would like to have links in the left of my table and let those pages open in the right side of the table without having 2 frames. I know it can be done using frames but I have seen php pages that let you open the links pages on the same page without taking you to other pages. can any body tell me how to make that or has sample or point to a link. thanks in advance.
HD



Sponsored Link
Ads by Google

Response Number 1
Name: Infinite Recursion
Date: October 26, 2003 at 08:06:15 Pacific
Reply:

HR:

You can try using the include() inside the table cell as follows:

IR

---

<html> </br>

<head> </br>

<title>Document Title</title> </br>

</head> </br>

<body> </br>

<table align = "center" border = 1 width=100%> </br>

<tr = 4><td colspan=2>Example</td></tr> </br>

<tr> </br>

<td> </br>

// Have a link here, or text box... </br>

</td> </br>

<td> </br>

<?php </br>

// </br>

// Have $choice be the result from  </br>

// the link or text box, etc... </br>

//  </br>

$choice = "menu"; </br>

if ($choice ==  "menu") </br>

{ </br>

  include ("menu.inc"); </br>

} </br>

  else </br>

  { </br>

    include ("weather.php"); </br>

  } </br>

?> </br>

</td> </br>

</br>

</tr> </br>

</body> </br>

</html></br>


0

Response Number 2
Name: Infinite Recursion
Date: October 26, 2003 at 08:07:25 Pacific
Reply:

Ignore the br html syntax... errors in forum code conversion.

IR


0

Response Number 3
Name: SN
Date: October 26, 2003 at 09:55:36 Pacific
Reply:

Oh yeah, since Justin changed the parsing, the code converter's BR tags actually show up...I'll e-mail you a revised one.

Sorry, I should have remembered that.

-SN


0

Response Number 4
Name: Infinite Recursion
Date: October 26, 2003 at 12:54:41 Pacific
Reply:

Thanks for the update SN. Look forward to your email...

IR


0

Response Number 5
Name: hd
Date: October 26, 2003 at 22:19:14 Pacific
Reply:

Please email it to me too. here is my email:
alhaidry@hotmail.com

Thanks


0

Related Posts

See More



Sponsored Link
Ads by Google
Reply to Message Icon






Post Locked

This post is quite old and has been locked from receiving new replies. Please create a new posting instead.


Go to Programming Forum Home


Sponsored links

Ads by Google


Results for: open a page in a table column not a

Perl: Open a file on remote system www.computing.net/answers/programming/perl-open-a-file-on-remote-system/5870.html

make a funct that open a file in C www.computing.net/answers/programming/make-a-funct-that-open-a-file-in-c/9599.html

Opening a text file in a textbox www.computing.net/answers/programming/opening-a-text-file-in-a-textbox/285.html