i use this code to display info
displays 1 line under another i would like to be able to change this to say 2 fields side by side without using tables
this is the code i use at the moment
// Output
PHP Code:Echo "<b>ID:</b> ".$info['id'] . " <br>";
Echo "<b>Name:</b> ".$info['name'] . " <br>";
Echo "<b>State:</b> ".$info['state'] . " <br>";
Echo "<b>Type:</b> ".$info['type'] . " <br>";
Echo "<b>Email:</b> ".$info['email'] . " <br>";
Echo "<b>Date:</b> ".$info['date'] . " <br>";
Echo "<b>Area:</b> ".$info['area'] . " <br>";
Echo "<b>Details:</b> ".$info['details'] . " <br>";
Echo "<b>Photo:</b> ".$info['pname'] . " <br>";
Echo '<a href="update.php?id='.$info['id'].'">Update</a>';
Echo '<hr />';





Bookmarks