This is maybe a really simple question for some of you. But I would like to know how to place div in a smart way. Here the result i want to have enter image description here

So basically a user do a search of POI, and I select it in the the DB on php and then i have to display the result as in the image.

As is quite generic, how can place the div at the right place etc.. ?

THanks

link|improve this question

12% accept rate
What have you tried so far? – Ash Burlaczenko May 18 '11 at 15:41
4  
This is indeed too generic in its current form. Can you break it down to a specific technical question? – Pekka May 18 '11 at 15:41
Post what you've tried so far. – jayp May 18 '11 at 15:42
1  
Can you clarify what on this page is a div, maybe by drawing red boxes around each div? – Nilloc May 18 '11 at 15:42
I have to clarify that i get the result from the database with PHP. So in php I just loop trough the results and display it really badly with a couple of <br> and carriage return and spaces.. etc... but this is not really smart... There should probably be a better way to do it no? (like having a div for each text etc..?) SO what i would like to do is to place the text – Fazoulette May 18 '11 at 15:45
feedback

1 Answer

up vote 1 down vote accepted

You can either use a divs or tables or both. Depending on how you want to structure your data.

Edit: Added markup

<style type="text/css">
<!--
.div-block {
        width:500px;
        height:auto;
        overflow:hidden;
        clear:both
}
-->
</style>

<div class="div-block">
  <table width="480" border="0" cellspacing="0" cellpadding="0">
    <tr>
      <th scope="col" colspan="4">Information</th>
    </tr>
    <tr>
      <Td><strong>Address</strong></Td>
      <td>(info)</td>
      <Td><strong>Telephone</strong></Td>
      <td>(info)</td>
    </tr>
    <tr>
      <td><strong>Address 2</strong></td>
      <td>(info)</td>
      <td><strong>Mobile</strong></td>
      <td>(info0)</td>
    </tr>
    <Tr>
      <th scope="col" colspan="4">Details</th>
    </Tr>
    <Tr>
      <td>Site Web</td>
      <td>(info)</td>
      <td>Hour</td>
      <td>(info)</td>
    </Tr>
    <Tr>
      <td colspan="2">Mail</td>
      <td colspan="2">(info)</td>
    </Tr>
  </table>
</div>
<!-- activity -->
link|improve this answer
1  
I would like to struct the data as in the picture (if you can see it i'm not sure i can post image with my grade) – Fazoulette May 18 '11 at 15:52
See my edit above @Fazoulette – SirB May 18 '11 at 15:59
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.