RE: Links displaying in Table cells

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



> After clicking on a link of a menu in a PHP page, I want to display that
> link in cell of a table. Please let me know how to open this link in a
> table
> cell.

You mean like this?

<HTML><BODY>
  <A HREF="<?=$PHP_SELF?>?target=http://php.net";>PHP</A>
  <TABLE>
    <TR><TD><?=isset($_GET['target']) ? $_GET['target'] : ''?></TD></TR>
  </TABLE>
</BODY></HTML>


You may also want to consider not using PHP at all, but using JavaScript
and 'innerHTML' property of a table cell.  Hard to tell from your
question.


-- 
Like Music?
http://l-i-e.com/artists.htm

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux