table
Moderator: General Moderators
table
Hi
Hope somebody can help me.
What I won't is to make table in withc some data will be populated.
table should look like this:
|---------------------------------|------------|
|/data1/|/picture1/|/data2/|////////////|
|---------------------------------|////////////|
|/data3/|////data4///////////|/picture2/|
|---------------------------------|////////////|
|/data5/|////data6///////////|////////////|
|---------------------------------|------------|
normaly without "/" letter.
this is my first php creation of table, so please help me
Hope somebody can help me.
What I won't is to make table in withc some data will be populated.
table should look like this:
|---------------------------------|------------|
|/data1/|/picture1/|/data2/|////////////|
|---------------------------------|////////////|
|/data3/|////data4///////////|/picture2/|
|---------------------------------|////////////|
|/data5/|////data6///////////|////////////|
|---------------------------------|------------|
normaly without "/" letter.
this is my first php creation of table, so please help me
-
Illusionist
- Forum Regular
- Posts: 903
- Joined: Mon Jan 12, 2004 9:32 pm
Code: Select all
<table>
<tr><td>data1</td><td><img src=whatever.jpg></td><td>data2</td><td rowspan=3><img src=whatever2.jpg></td></tr>
<tr><td>data3</td><td>data4</td></tr>
<tr><td>data5</td><td>data6</td></tr>
</table>Illusionist wrote:Code: Select all
<table> <tr><td>data1</td><td><img src=whatever.jpg></td><td>data2</td><td rowspan=3><img src=whatever2.jpg></td></tr> <tr><td>data3</td><td>data4</td></tr> <tr><td>data5</td><td>data6</td></tr> </table>
Thanky you for quick reply.
What I need is how to make table with PHP script and table should look like above
not in HTML.
Thank you
-
Illusionist
- Forum Regular
- Posts: 903
- Joined: Mon Jan 12, 2004 9:32 pm
Code: Select all
echo "<table>";
echo "<tr><td>data1</td><td><img src=whatever.jpg></td><td>data2</td><td rowspan=3><img src=whatever2.jpg></td></tr>";
echo "<tr><td>data3</td><td>data4</td></tr>";
echo "<tr><td>data5</td><td>data6</td></tr>";
echo "</table>";-
Illusionist
- Forum Regular
- Posts: 903
- Joined: Mon Jan 12, 2004 9:32 pm