i create two tables in same page.first table is created and second table is created that table is shown in below the first table.i want to shown the second table in right side of the first table.
Yes it is possible, but you need to use CSS and DIVs. Tables are depreciated, unless being used for display of information that require tables (like Excel spread sheets). If you are displaying tables containing info (not images and the mark up of your site) then put each table in a DIV tag. <DIV class="table1"><TABLE><TR><TD></TD></TR></TABLE></DIV> <DIV class="table2"><TABLE><TR><TD></TD></TR></TABLE></DIV> Then use CSS to define the size and position of the containers, and have one "float:left" and the other "float:right". As long as there is enough room within the confines of the content area to put them next to each other, they will sit site by side.