Welcome Guest, Not a member yet? Register   Sign In
User System
#1

[eluser]plasmagames[/eluser]
Hey, guys i'm new to this forum and codeigniter.

I was wandering if you guys could help me with find tutorials and/or guides on stuff that i will need for the user system. You don't have to write any code for my or show me how to do stuff but if you want to thats fine.
#2

[eluser]Colin Williams[/eluser]
Anything specific you are having trouble grasping? If you are looking for something you can drop and and tweak to your liking, look at all the offerings in the wiki
#3

[eluser]plasmagames[/eluser]
[covering up important confidential details]
#4

[eluser]Colin Williams[/eluser]
Start at the beginning of the user guide. I don't think you edited your config.php file properly. Your base_url is probably set to http://your-site.com
#5

[eluser]majidmx[/eluser]
Yeah start with the user_guide and video tutorials, they give you a good idea of the whole system and never forget the CI community which is always supportive Wink
#6

[eluser]plasmagames[/eluser]
ok i have just completed the blog video tutorial, but i got a problem ( http://plasmasteelgames.net/code ) heres that line of code
Code:
$data['query'] = $this->db->get('entries');
#7

[eluser]plasmagames[/eluser]
can anyone help?
#8

[eluser]jalalski[/eluser]
Are you sure that News extends the Controller class and loads the database?
#9

[eluser]plasmagames[/eluser]
yup heres my contoller code

Code:
<?php

class News extends Controller {

    function News()
    {
        parent::Controller();
        
    }

    function index()
    {
        $data['title'] = "Plasma Steel Games | News";
        $data['heading'] = "News";
        $data['query'] = $this->db->get('entries');
        $this->load->view('news', $data);
    }

}

?>
#10

[eluser]garrettheel[/eluser]
You're definitely autoloading the database helper? And what error do you get?




Theme © iAndrew 2016 - Forum software by © MyBB