Programming Forums
User Name Password Register
 

RSS Feed
FORUM INDEX | TODAY'S POSTS | UNANSWERED THREADS | ADVANCED SEARCH

 
 
Thread Tools Display Modes
Prev Previous Post in Thread   Next Post in Thread Next
Old Mar 16th, 2008, 12:38 PM   #1
irish
Programmer
 
Join Date: Nov 2005
Location: Belfast
Posts: 35
Rep Power: 0 irish is an unknown quantity at this point
PHP Dump issue.

I've been trying to dump some info from an SQL Database into a webpage using PHP. My problem is that there is a massive gap appearing at the beginning before the information comes out(see here ignore general appearance, will be fixed afterwards ), I've tried editing the html etc as much as possible but that doesn't affect it, it's the PHP itself I think. Can you find any reason why this code would present that problem?

	
$sql = "SELECT raiders as raiders, spent , earned, balance 
        FROM   raidpoints";

$result = mysql_query($sql);

while ($row = mysql_fetch_assoc($result)) {
	echo '<tr><td width="120" align="center" valign="top">';
	echo $row["raiders"];
	echo '</td>';
	echo '<td width="120" align="center" valign="top">';
	echo $row["spent"];
	echo '</td>';
	echo '<td width="120" align="center" valign="top">';
	echo $row["earned"];
	echo '</td>';
	echo '<td width="120" align="center" valign="top">';
	echo $row["balance"];
	echo '</td></tr><br>';
}

Will also be making the code more efficient afterwards, just need help with the logic of the current code.
irish is offline   Reply With Quote
 

Bookmarks

« Previous Thread in Forum | Next Thread in Forum »

Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
installing php (beginners question) spekkio7 PHP 4 Jan 11th, 2008 10:06 AM
New PHP Based Forum-RPG dizdain Paid Job Offers 5 Dec 3rd, 2007 2:32 AM
Php Tutorial 3 bulio PHP 4 Jul 16th, 2006 4:00 AM
Php Tutorial 1 bulio PHP 17 May 29th, 2006 4:54 AM
Php Tutorial 2 bulio PHP 2 Jul 1st, 2005 7:30 AM




DaniWeb IT Discussion Community
All times are GMT -5. The time now is 6:43 AM.

Powered by vBulletin® Version 3.7.0, Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Copyright ©2007 DaniWeb® LLC