Hi does anyone knows how to create a fast comment or a comment form in the footer instead of the regular comment?

Comments

you could easy use <?phpprint

you could easy use

<?php
print drupal_get_form('comment_form', array('nid' => arg(1));
?>

thanks, but where do I type

thanks, but where do I type that code?

create a block in footer and

create a block in footer and enter this code as php code
and it will help you

thanks, I'll try it

thanks, I'll try it

Got a problem Parse error:

Got a problem

Parse error: parse error in C:\xampp\htdocs\demo\includes\common.inc(1655) : eval()'d code on line 2

Missed out the last )

<?php
 
print drupal_get_form('comment_form', array('nid' => arg(1)));
?>

works a treat