how do i split these up at the moment goes right accross screen echo "<tr> <td>". $info['id'] ."</td> <td>". $info['region'] ."</td> <td>". $info['name'] ."</td> <td>". $info['username'] ."</td> <td>". $info['password'] ."</td> <td>". $info['email'] ."</td> <td>". $info['contact'] ."</td> <td>". $info['parklocation'] ."</td> <td>". $info['make'] ."</td> <td>". $info['caravandetails'] ."</td> <td>". $info['smoke'] ."</td> <td>". $info['pets'] ."</td> <td>". $info['kids'] ."</td> <td>". $info['sex'] ."</td> <td>". $info['pname'] ."</td> <td>". $info['enq'] ."</td>"; PHP: cheers Doug
It's a table row... it's meant to go across the screen (although you missed the </tr>) - What would you prefer for them to do? Dan
You can split up into many rows (1 column only) like this <tr><td><?php // your php code here ?></td></tr> <tr><td><?php // your php code here ?></td></tr> <tr><td><?php // your php code here ?></td></tr> <tr><td><?php // your php code here ?></td></tr> ... PHP: