Jump to content

My Php Code Give Some Strange Problem


Mrbagino

Recommended Posts

Dear all,

 

I have some problem with my php code i try to make some XML and PHP Content managmant system, but i have now some problem with the root?

 

He give the next error: Fatal error: Call to a member function root() on a non-object in /home/......./public_html/searchArticles.php on line 29

 

 

See here my code please:

 

 


<?php
session_start();
$results = array();

//this is a very simple, potentially very slow search
function extractText($array){
if(count($array) <= 1){
//we only have one tag to process!
for ($i = 0; $i<count($array); $i++){
$node = $array[$i];
$value = $node->get_content();
}
return $value;
}

}

$dh = opendir('./xml/');

while ($file = readdir($dh)){
if (eregi("^\\.\\.?$", $file)) {
continue;
}
$open = "./xml/".$file;
$xml = "domxml_open_file" .$open;

//we need to pull out all the things from this file that we will need to
//build our links
$root = $xml->root("id");

$id = $root->get_attribute("id");

$stat_array = $root->get_elements_by_tagname("status");
$status = extractText($stat_array);

$k_array = $root->get_elements_by_tagname("keywords");
$keywords = extractText($k_array);

$h_array = $root->get_elements_by_tagname("headline");
$headline = extractText($h_array);

$ab_array = $root->get_elements_by_tagname("abstract");
$abstract = extractText($ab_array);

if ($status != "live"){
continue;
}

if (eregi($searchTerm, $keywords) or eregi($searchTerm,$headline)){
$list['abstract'] = $abstract;
$list['headline'] = $headline;
$list['file'] = $file;
$results[] = $list;
}

}

$results = array_unique($results);

?>
<h1>Search Results</h1>
<a href="index.php">back to main</a>
<p>You searched for: <i><?php echo $searchTerm ?></i></p>
<hr>


<?php

if (count($results)>0){
echo "<p>Your search results:</p>";
foreach ($results as $key => $listing){
echo "<br><a href=\"showArticle.php?file=".$listing["file"]."\">" . $listing["headline"]."</a>\n";
echo "<br>". $listing["abstract"];
echo "<br>";
}
} else {

echo "<p>Sorry, no articles matched your search term.</p>";
}

?>

 

 

I hope for some sugestions, Thanks a lot!

Edited by PFMaBiSmAd
removed wysiwyg micro-font format and changed quote->code tags
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.