Version: , by cinq
Developer Last Online: Nov 2023
Version: Unknown
Rating:
Released: 10-31-2003
Last Update: Never
Installs: 0
No support by the author.
PHP Code:
if ($action=="main") {
$result = $DB_site->query("SELECT * FROM links_cat ORDER by catorder");
if ($row = $DB_site->num_rows($result)) {
while ($row=$DB_site->fetch_array($result)) {
$catid=$row["linkcatid"];
$catname=$row["catname"];
$catbyline=$row["catbyline"];
$result1= $DB_site->query("SELECT * FROM links_content WHERE categoryid='$catid'");
if ($row = $DB_site->num_rows($result1)) {
while ($row=$DB_site->fetch_array($result1)) {
$name=$row["name"];
$byline=$row["byline"];
$content=$row["content"];
eval("\$catlistbit .= \"".gettemplate('links_catbit')."\";");
}}
}}
eval("dooutput(\"".gettemplate('links_main')."\");");
}
Show Your Support
This modification may not be copied, reproduced or published elsewhere without author's permission.
CREATE TABLE links_cat (
linkcatid int(11) NOT NULL auto_increment,
catorder int(50) NOT NULL default '0',
catname varchar(255) NOT NULL default '',
catbyline text NOT NULL,
PRIMARY KEY (linkcatid)
) TYPE=MyISAM;
#
# Table structure for table 'links_content'
#
CREATE TABLE links_content (
linkid int(11) NOT NULL auto_increment,
categoryid varchar(255) NOT NULL default '',
name varchar(255) NOT NULL default '',
byline text NOT NULL,
content text NOT NULL,
PRIMARY KEY (linkid)
) TYPE=MyISAM;
$result = $DB_site->query("SELECT * FROM links_cat ORDER by catorder");
if (mysql_num_rows($result)) {
while ($row=$DB_site->fetch_array($result)) {
$catid=$row["linkcatid"];
$catname=$row["catname"];
$catbyline=$row["catbyline"];
$result1= $DB_site->query("SELECT * FROM links_content WHERE categoryid='$catid'");
if (mysql_num_rows($result1)) {
while ($row2=$DB_site->fetch_array($result1)) { // changed $row into $row2 because $row is used in the other while
$name=$row2["name"];
$byline=$row2["byline"];
$content=$row2["content"];
eval("\$catlistbit .= \"".gettemplate('links_catbit')."\";"); // edit the template, change $row into $row2
} // end while $row2
} // end if rows $result1
Thanks for the reply Lesane,
however in my template i do not have a $row variable.
This is the code i am now using ( still DOESNT work )
PHP Code:
$result = $DB_site->query("SELECT * FROM links_cat ORDER by catorder");
if ($row = $DB_site->num_rows($result)) {
while ($row=$DB_site->fetch_array($result)) {
$catid=$row["linkcatid"];
$catname=$row["catname"];
$catbyline=$row["catbyline"];
$result1 = $DB_site->query("SELECT * FROM links_content WHERE categoryid='$catid' ORDER BY name ASC ");
if ($row2 = $DB_site->num_rows($result1)) {
while ($row2=$DB_site->fetch_array($result1)) {
$name=$row2["name"];
$byline=$row2["byline"];
$content=$row2["content"];
eval("\$linkslistbit .= \"".gettemplate('links_linkbit')."\";");
}}
eval("\$catlistbit .= \"".gettemplate('links_catbit')."\";");
}}