how do you place a table at a specific plot point?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • orfiyus
    New Member
    • Jul 2007
    • 36

    how do you place a table at a specific plot point?

    Yea Im working with a badly written php script that doesnt utilize a css. Its over 2000 lines so rewriting it would be a pain in the ass. Theres all sorts of <table> and <tr> and <td> tags all over the place. Im looking to place a table at a specific part of the page similar to this code that I found for placing an image on a specific part of the page. I have included the similar code. Is this possible?

    [HTML]<IMG STYLE="position :absolute; TOP:35px; LEFT:170px; WIDTH:50px; HEIGHT:50px" SRC="circle.gif "> [/HTML]
  • drhowarddrfine
    Recognized Expert Expert
    • Sep 2006
    • 7434

    #2
    Exactly the same way but just change IMG to TABLE.

    Comment

    • orfiyus
      New Member
      • Jul 2007
      • 36

      #3
      thats crack. it worked. Thanks drhoward...smh at not coming up with that myself.

      heres the code incase sumone is googling for this problem

      [PHP]
      echo("<table STYLE='position :absolute; TOP:95px; LEFT:100px; WIDTH:40px; HEIGHT:50px' >");
      echo("<tr><td>t est table</td></td>");
      echo("</table>");
      [/PHP]

      Comment

      Working...