AustNet AustNet Archive Project — IRC Logs
« All channels | Contribute a log »

// #php — 2008-01-18

1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
21:03:22 Topic Is: Welcome to #PHP | 5.2.5, 4.4.8 released | PHP4 versions have ceased as of January 1st | Looking for a website dev. contact drexen or robert_
21:03:22 Set By: (paveway) on: Fri Jan 04 06:28:43 2008
21:59:37 Quit: smythe ([email protected]) Exit: Austnet Chat Network
22:14:04 Join: smythe ([email protected]) to #php
23:18:27 Join: MedNez ([email protected]) to #php
23:46:55 <milliato> how would you in the case of echo'ing tables tell the 2nd table not to line up beside the first one?
23:47:01 <milliato> echo "</table>";
23:47:11 <milliato> echo "<table width='100'>";
23:47:21 <milliato> this lines up side by side
23:49:02 <teranoid> Change the width, or use CSS to add a margin-left
23:49:44 <teranoid> echo '<table id="foo">'; and in CSS #foo { margin-left: 5px; }
23:52:57 <milliato> didnt fix it
23:53:12 <milliato> the table is still beside the other one
23:53:15 <milliato> it should be on a new line
23:54:25 <teranoid> Have an online example?
23:57:17 <milliato> http://img262.imageshack.us/my.php?image=tablesqt7.jpg
23:57:26 <milliato> does it in IE7 and firefox
23:59:12 <teranoid> I guess you could use a new <div> for that second table and in CSS {position: relative}