Computer Webmaster Gaming Console Graphics Forum

Welcome to the Computer Webmaster Gaming Console Graphics Forum forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact contact us.

MK PitStop Main Earn $25 Earn Money Posting Extras Members Blogs Image Hosting User Pages
Go Back   Computer Webmaster Gaming Console Graphics Forum > Webmaster Forum > Website Coding > Database
Register FAQ/Rules Become A V.I.P. Member Search Today's Posts Mark Forums Read

Database Database problems or need to ask a question? maybe something to do with sql injections or a database software question. Database topics cover MySQL, PostgreSQL, Oracle, SQL Server or anything else related to databases.

Google
Reply
 
LinkBack Thread Tools Display Modes
Old 07-01-2007, 9:32 PM   #1
JackM
 
JackM's Avatar
 
Posts: n/a
My Photos: (0)

Banked:
MK Cash: $

I am Worth:
MK Cash: $
Donate

Recent Blog: None

Default Printing mysql_fetch_array results in multicolumn table

I'm not sure if this qualifies as a mysql or a php question so I'm
asking in both groups.

I am pulling the results of a mysql query from my database and want to
print the results into a two column table. I know how to get the results
into a single column table just fine using:

while($row = mysql_fetch_array($result)) {
print "<table border=2><tr><th>" . $row[name];
print "<tr><td>";
print mysql_field_name($result, 0) . ": " . $row[ID]."<br>";
print mysql_field_name($result, 1) . ": " . $row[name]."<br>";
print mysql_field_name($result, 2) . ": " . $row[address]."<br>";
print mysql_field_name($result, 3) . ": " . $row[city]."<br>";
print mysql_field_name($result, 4) . ": " . $row[telephone]."<br>";
print "</td></tr>";
print "</table>\n";
print "<br><br>";
}

and it works fine. But my efforts to get the reults into a two column
setup have become frustrating. My latest attempt was:

while($row = mysql_fetch_array($result)) {
print "<table border=2 width='90%'>";
print "<tr>";
print "<td>";
print "<b>" . $row[name] . "</b><br>";
print mysql_field_name($result, 0) . ": " . $row[ID]."<br>";
print mysql_field_name($result, 1) . ": " . $row[name]."<br>";
print mysql_field_name($result, 2) . ": " . $row[address]."<br>";
print mysql_field_name($result, 3) . ": " . $row[city]."<br>";
print mysql_field_name($result, 4) . ": " . $row[telephone]."<br>";
print "</td>";
print "<td>";
print mysql_field_name($result, 0) . ": " . $row[ID]."<br>";
print mysql_field_name($result, 1) . ": " . $row[name]."<br>";
print mysql_field_name($result, 2) . ": " . $row[address]."<br>";
print mysql_field_name($result, 3) . ": " . $row[city]."<br>";
print mysql_field_name($result, 4) . ": " . $row[telephone]."<br>";
print "</td>";
print "</tr>";
print "</table>\n";
print "<br><br>";
}

This puts the same data from a single result in both <td> fields though.
I want it to put data from the first result in the left <td> and data
from the second result in the right side and continue on from there
until the end.

What am I overlooking on this to make it work as I need it to?
 
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Reply With Quote
Advertisements
Old 07-01-2007, 9:32 PM   #2
Schraalhans Keukenmeester
 
Schraalhans Keukenmeester's Avatar
 
Posts: n/a
My Photos: (0)

Banked:
MK Cash: $

I am Worth:
MK Cash: $
Donate

Recent Blog: None

Default Printing mysql_fetch_array results in multicolumn table

JackM wrote:
> I'm not sure if this qualifies as a mysql or a php question so I'm
> asking in both groups.
>
> I am pulling the results of a mysql query from my database and want to
> print the results into a two column table. I know how to get the results
> into a single column table just fine using:
>
> while($row = mysql_fetch_array($result)) {
> print "<table border=2><tr><th>" . $row[name];
> print "<tr><td>";
> print mysql_field_name($result, 0) . ": " . $row[ID]."<br>";
> print mysql_field_name($result, 1) . ": " . $row[name]."<br>";
> print mysql_field_name($result, 2) . ": " . $row[address]."<br>";
> print mysql_field_name($result, 3) . ": " . $row[city]."<br>";
> print mysql_field_name($result, 4) . ": " . $row[telephone]."<br>";
> print "</td></tr>";
> print "</table>\n";
> print "<br><br>";
> }
>
> and it works fine. But my efforts to get the reults into a two column
> setup have become frustrating. My latest attempt was:
>
> while($row = mysql_fetch_array($result)) {
> print "<table border=2 width='90%'>";
> print "<tr>";
> print "<td>";
> print "<b>" . $row[name] . "</b><br>";
> print mysql_field_name($result, 0) . ": " . $row[ID]."<br>";
> print mysql_field_name($result, 1) . ": " . $row[name]."<br>";
> print mysql_field_name($result, 2) . ": " . $row[address]."<br>";
> print mysql_field_name($result, 3) . ": " . $row[city]."<br>";
> print mysql_field_name($result, 4) . ": " . $row[telephone]."<br>";
> print "</td>";
> print "<td>";
> print mysql_field_name($result, 0) . ": " . $row[ID]."<br>";
> print mysql_field_name($result, 1) . ": " . $row[name]."<br>";
> print mysql_field_name($result, 2) . ": " . $row[address]."<br>";
> print mysql_field_name($result, 3) . ": " . $row[city]."<br>";
> print mysql_field_name($result, 4) . ": " . $row[telephone]."<br>";
> print "</td>";
> print "</tr>";
> print "</table>\n";
> print "<br><br>";
> }
>
> This puts the same data from a single result in both <td> fields though.
> I want it to put data from the first result in the left <td> and data
> from the second result in the right side and continue on from there
> until the end.
>
> What am I overlooking on this to make it work as I need it to?


Not completely sure what you want exactly, but there are some weird
constructs in both cases. You create a complete table for each db row it
seems. The table tages should be outside the loop I suppose.

It is no surprise in the second example you get the same data in both
columns, since that is what you ordered. If what you aim for is a table
looking like this:

ID <ID value for row x>
name <name value for row x>

[etc]

ID <ID value for row y>
name <name value for row y>

[etc]

then replace all the <td> </td> contents of the first column with
appropriate contents.

Sh.
--
Sigh. I like to think it's just the Linux people who want to be on
the "leading edge" so bad they walk right off the precipice.
(Craig E. Groeschel)
 
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Reply With Quote
Old 07-01-2007, 9:33 PM   #3
Peter H. Coffin
 
Peter H. Coffin's Avatar
 
Posts: n/a
My Photos: (0)

Banked:
MK Cash: $

I am Worth:
MK Cash: $
Donate

Recent Blog: None

Default Printing mysql_fetch_array results in multicolumn table

On Mon, 01 May 2006 11:19:39 -0400, JackM wrote:
> I'm not sure if this qualifies as a mysql or a php question so I'm
> asking in both groups.
>
> I am pulling the results of a mysql query from my database and want to
> print the results into a two column table. I know how to get the results
> into a single column table just fine using:
>
> while($row = mysql_fetch_array($result)) {
> print "<table border=2><tr><th>" . $row[name];
> print "<tr><td>";
> print mysql_field_name($result, 0) . ": " . $row[ID]."<br>";
> print mysql_field_name($result, 1) . ": " . $row[name]."<br>";
> print mysql_field_name($result, 2) . ": " . $row[address]."<br>";
> print mysql_field_name($result, 3) . ": " . $row[city]."<br>";
> print mysql_field_name($result, 4) . ": " . $row[telephone]."<br>";
> print "</td></tr>";
> print "</table>\n";
> print "<br><br>";
> }
>
> and it works fine. But my efforts to get the reults into a two column
> setup have become frustrating. My latest attempt was:
>
> while($row = mysql_fetch_array($result)) {
> print "<table border=2 width='90%'>";
> print "<tr>";
> print "<td>";
> print "<b>" . $row[name] . "</b><br>";
> print mysql_field_name($result, 0) . ": " . $row[ID]."<br>";
> print mysql_field_name($result, 1) . ": " . $row[name]."<br>";
> print mysql_field_name($result, 2) . ": " . $row[address]."<br>";
> print mysql_field_name($result, 3) . ": " . $row[city]."<br>";
> print mysql_field_name($result, 4) . ": " . $row[telephone]."<br>";
> print "</td>";
> print "<td>";

if ($row = mysql_fetch_array($result)) {
> print mysql_field_name($result, 0) . ": " . $row[ID]."<br>";
> print mysql_field_name($result, 1) . ": " . $row[name]."<br>";
> print mysql_field_name($result, 2) . ": " . $row[address]."<br>";
> print mysql_field_name($result, 3) . ": " . $row[city]."<br>";
> print mysql_field_name($result, 4) . ": " . $row[telephone]."<br>";

} else {
print "&nbsp;";
}
> print "</td>";
> print "</tr>";
> print "</table>\n";
> print "<br><br>";
> }
>
> This puts the same data from a single result in both <td> fields though.
> I want it to put data from the first result in the left <td> and data
> from the second result in the right side and continue on from there
> until the end.
>
> What am I overlooking on this to make it work as I need it to?


You need to fetch a new row from your results (and handle the condition
of there being no more results properly), as indicated above.

--
79. If my doomsday device happens to come with a reverse switch, as soon as it
has been employed it will be melted down and made into limited-edition
commemorative coins.
--Peter Anspach's list of things to do as an Evil Overlord
 
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Reply With Quote
Featured Websites
Free Space
Free Space
Free Space Free Space
Reply
Tags: , , , ,




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

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
How to take data out of table, restructure the table and then put the data back in Laphan Database 4 07-01-2007 6:24 PM
mysql_fetch_array from multiple tables? Dieter Kedrowitsch PHP 1 07-01-2007 5:04 PM
Delete from a table using entries in temp table n00bie Database 2 06-10-2007 12:25 AM
Joining many results from one table with one result from another in one query Piotr Chmielewski Database 0 06-10-2007 12:20 AM
Top Search Results Dicky.Links18@gmail.com Website Reviews And Website Questions 0 05-28-2007 12:42 AM


Featured Websites




All times are GMT +1. The time now is 4:22 AM.


Powered by: vBulletin Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO 3.0.0
Cheap Computers
MK PitStop Copyright 2005 - 2008

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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98