Menus work great and still trying to figure out a way to add menus to admin area
Existing Reports built with PHPR 5.0 do not work and show the below error:
Fatal error: Call to undefined function strlower() in C:\webserver\htdocs\report\include\CME_Activity_Audit_Report_reportlib.php on line 222
Here's the function it is having problems with strlower
[codebox] function getKey($data)
{
if($this->_recordBasedRequest)
{
if($this->_interval > 0)
{
if($this->_caseSensitive)
return substr($data[$this->_name], 0, $this->_interval);
else
return strtolower(substr($data[$this->_name], 0, $this->_interval));
}
else
{
if($this->_caseSensitive)
return $data[$this->_name];
else
return strlower($data[$this->_name]);
}
}
else
{
if($this->_caseSensitive)
return $data[$this->alias()];
else
return strtolower($data[$this->alias()]);
}
}
[/codebox]
My other report just shows the error message: Unknown type: `unknown`
I will post anything else I find <img src='https://asprunner.com/forums/file.php?topicimage=1&fieldname=question&id=11083&image=1&table=forumtopics' class='bbc_emoticon' alt=':)' />
Thanks