hey, I have to admit that I’m totally new to CodeIgniter and decided to start following those tutorials videos that can be found on CodeIgniter webpage.
But there is a one small thing that I just can’t get to work:
in the “blog” tutorial everything works perfekt at the first page where it lists all the blogs that exist in the database, that’s great, then I click on “comment” at any of the blog and that direct me to the right page (http://localhost/codeigniter_1.5.4/index.php/blog/comments/1).
But if I try to submit a comment or even try to add link on the comment page then I always get some wrong url in the addressbar:
f.ex.
I want to submit a comment, then I use: <?=form_open(‘blog/comment_insert’);?> ......
but the page I’m then submittet to is
http://localhost/codeigniter_1.5.4/index.php/blog/comments/index.php/blog/comment_insert
instead of
http://localhost/codeigniter_1.5.4/index.php/blog/comment_insert
Can anyone help me with this one ?
