<html><head></head><body><div style="font-family: Verdana;font-size: 12.0px;"><div>hello<br/>on http://blog.literarymachine.net/ i found following example:<br/><br/><?php<br/>require_once('LibRDF/LibRDF.php');<br/> <br/>$store = new LibRDF_Storage();<br/>$model = new LibRDF_Model($store);<br/>$model->loadStatementsFromURI(<br/>        new LibRDF_Parser('rdfxml'),<br/>        'http://richard.cyganiak.de/foaf.rdf');<br/> <br/>$foafKnows = new LibRDF_URINode("http://xmlns.com/foaf/0.1/knows");<br/>$foafName = new LibRDF_URINode("http://xmlns.com/foaf/0.1/name");<br/>$results = $model->findStatements(null, $foafKnows, null);<br/>foreach ($results as $result) {<br/>    $person1 = $result->getSubject();<br/>    $person2 = $result->getObject();<br/>    $name1 = $model->getTarget($person1, $foafName);<br/>    $name2 = $model->getTarget($person2, $foafName);<br/>    echo "$name1 knows $name2\n";<br/>}<br/><br/>which runs on my pc without error.<br/><br/>futher it is mentioned in the article, that it can be stored in a database<br/>with following amendment:<br/><br/>$store = new LibRDF_Storage("mysql", "db",<br/>        "new='yes',<br/>        host='localhost',<br/>        database='mydatabase',<br/>        user='foo',<br/>        password='bar'");<br/><br/>but when i replace the "$store = new LibRDF_Storage();" with my existing <br/>mysql databbase i got the error message <br/>"LibRDF_Storage->__construct('mysql', 'db', 'new='yes',?    ...')"<br/>What is wrong in my code.<br/>bk<br/><br/><br/></div></div>  <br><br><table cellpadding="0" cellspacing="0" border="0"><tr><td style="font-family:verdana; font-size:12px; line-height:17px;border-top:1px solid #000000">Ihr WEB.DE Postfach immer dabei: die kostenlose WEB.DE Mail App für iPhone und Android.   <br><a href="https://produkte.web.de/freemail_mobile_startseite/"><b>https://produkte.web.de/freemail_mobile_startseite/</b></a></td></tr></table>
</body></html>