473,976 Members | 2,404 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Printing mysql_fetch_arr ay

2 New Member
hi, i am having trouble printing the records form my database. each row has a topic and headline. the topic should print and then the headlines for that topic, then the next topic and headlines.

healthcare
headline1
headline2
sports
headline3
headline4
headline5...


$result = mysql_query("SE LECT * FROM mccnews, topics where mccnews.topicid = topics.topicid ",$connect) ;

while($myrow = mysql_fetch_arr ay($result))
{//begin of loop
$name = $myrow['name'];
$hklink = $myrow['hklink'];
$headline = $myrow['headline'];
$first_headline = $headline;

// build $content table
$content .= table_header();
$content .= "<tr>";
$content .= "<td>" . $name . "</td>";
$content .= "<td>" . $hklink . "</td>";
$content .= "<td>" . $headline . "</td>";
$content .= "</tr>";
$sontent .= table_footer;

}//end of loop
Dec 1 '06 #1
2 1933
seangates
19 New Member
Firstoff, please use the code formatting for your posts. It would help.

[PHP]$result = mysql_query("SE LECT * FROM mccnews, topics where mccnews.topicid = topics.topicid" ,$connect);[/PHP]
This just shows all of the rows from the mccnews table. You need some way to limit it.

I think what you are trying to do requires a nested loop. Like this:
[PHP]$topics = mysql_query("SE LECT * FROM topics",$connec t);
while($topic = mysql_fetch_arr ay($topics)){
echo '<h2>' . $topic['topic_title'] . '</h2>';
$news_items = mysql_query("SE LECT * FROM mccnews where mccnews.topicid = " . $topic['topicid'],$connect);
while($myrow = mysql_fetch_arr ay($news_items) ){
$name = $myrow['name'];
$hklink = $myrow['hklink'];
$headline = $myrow['headline'];
$first_headline = $headline;

// build $content table
$content .= table_header();
$content .= "<tr>";
$content .= "<td>" . $name . "</td>";
$content .= "<td>" . $hklink . "</td>";
$content .= "<td>" . $headline . "</td>";
$content .= "</tr>";
$sontent .= table_footer;

}
}[/PHP]
Let me know if this is what you were intending.

Sean
Dec 1 '06 #2
gthomas
2 New Member
Firstoff, please use the code formatting for your posts. It would help.

[PHP]$result = mysql_query("SE LECT * FROM mccnews, topics where mccnews.topicid = topics.topicid" ,$connect);[/PHP]
This just shows all of the rows from the mccnews table. You need some way to limit it.

I think what you are trying to do requires a nested loop. Like this:
[PHP]$topics = mysql_query("SE LECT * FROM topics",$connec t);
while($topic = mysql_fetch_arr ay($topics)){
echo '<h2>' . $topic['topic_title'] . '</h2>';
$news_items = mysql_query("SE LECT * FROM mccnews where mccnews.topicid = " . $topic['topicid'],$connect);
while($myrow = mysql_fetch_arr ay($news_items) ){
$name = $myrow['name'];
$hklink = $myrow['hklink'];
$headline = $myrow['headline'];
$first_headline = $headline;

// build $content table
$content .= table_header();
$content .= "<tr>";
$content .= "<td>" . $name . "</td>";
$content .= "<td>" . $hklink . "</td>";
$content .= "<td>" . $headline . "</td>";
$content .= "</tr>";
$sontent .= table_footer;

}
}[/PHP]
Let me know if this is what you were intending.

Sean
Hi Sean,
Yes, it was the help that I what is was looking for. Thank you very much. I just have to ensure that a topic does not get added that does not have a headline.
Thanks again.
GT
Dec 5 '06 #3

Sign in to post your reply or Sign up for a free account.

Similar topics

4
13722
by: kaptain kernel | last post by:
i'm trying to find a simple way of printing out the keys in an array generated by mysql_fetch_array which returns a single row. i.e. while ($row=mysql_fetch_array($result) ) { print out the $row keys and values
5
2048
by: james | last post by:
I am new to PHP and am trying to run a simple query and display the result, with no luck. Here is the code I am using. <?php //start session session_start(); //store cmpid from querystring $_SESSION = $_GET;
15
2705
by: Good Man | last post by:
Hey there I have a dumb question.... Let's say i have a database full of 4000 people.... I select everything from the database by: $result = mysql_query("SELECT * FROM People");
2
6117
by: Dave Moore | last post by:
Hi All, I've got a simple query hopefully somebody can clear up for me. I need to make a query on a database to select a set of table rows, using something like: $result = mysql_query($query); I can then use mysql_fetch_array in a while loop to access each row in the result. This all works fine.
4
2978
by: Marcel Brekelmans | last post by:
Hello, I seem to get an extra empty field in every 'mysql_fetch_array' command I issue. For example: I have a simple table 'tblName': ID Name 1 Jane 2 Joe 2 Doe
1
3922
by: JackM | last post by:
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; print "<tr><td>";
9
7450
by: Petr Vileta | last post by:
Hi, I'm new here and excuse me if this question was be here earlier. I have a simple code <html><body> <?php <?php $link = mysql_connect("localhost", "user", "password") or die("Grr: " . mysql_error()); mysql_select_db("my_dbf") or die("Grr");
1
1362
by: launchpad67a | last post by:
Hello, I'm retrieving database info and turning it into an xml file. The xml file has to be structured exactly like this example below: Here is what I need: <xml> <listitem name="Video 1" url="files/flv" thumb="my_video1.jpg"> <stream name="my_video1.flv" start="0" len="-1" /> </listitem> <listitem name="Video 2" url="files/flv" thumb="my_video2.jpg">
3
3139
by: jmooney5115 | last post by:
Hey. I am new to php and am trying to learn. What I'm doing is querying(did I spell this right?) a mySQL database and putting the results into a table on a webpage. I have worked for hours on this and I finally got the answer I was looking for...almost. The problem is that the first result is not displayed. For example, my table in the database looks like: Item Number <-- Column Names Him 5 Fim 20 Kim 8 Lim 12 The results that are...
0
10163
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
11812
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
11405
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
11567
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
10903
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
8454
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6412
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
6549
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
5149
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.