17488 Posts in 4473 Topics by 1978 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 1516 Views |
-
Help me solve this, please

3 April 2007 at 2:34am
Hello.
I have a ArticlePage.php and a ArticlePage.ss like in the tutorial described. Now, i want to count the number od views on this page. I have rebuild the database and i have "Views" in ArticlePage table.
This is my code, and it doesn't work.class ArticlePage_Controller extends Page_Controller {
function CountViews(){
$i =DataObject::getField('Views');
$i++;
DataObject::setField("Views",$i);
DataObject::write();}
}I need a function that does not return anything, and just increment the Views in the ArticlePage table. What is wrong with this function? In the template i call this function with $CountViews.
Thank you
-
Re: Help me solve this, please

28 May 2007 at 10:02am
instead DataObject::getField(...) try $this->getField(...) and similarly for the other functions
| 1516 Views | ||
|
Page:
1
|
Go to Top |

