Jump to content

need help with PHP. URL not Found


doforumda

Recommended Posts

I am making login system using codeigniter. When I run my code i get this error.

The requested URL /ci_login/user/login was not found on this server.

 

here is my code so far

user.php file which is in controller folder

<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');

class User extends CI_Controller {
    function __construct() {
        parent::__construct();
    }
    
    function index() {

    }
    
    function login() {
        
        if($this->form_validation->run() == FALSE) {
            $this->load->view('view_login');
        } else {
            echo "Successfull";
        }
    }
}  

 

view_login.php file which is in view folder

<html>
<head>
<title>Login</title>
</head>
<body>
<h1>Please Login!</h1>

<p>Use the login form below to login.</p>
<div id="login_form">
    <?php echo form_open(base_url(). 'user/login' ) ?>
    <label>Username:</label>
    <div>
        <?php echo form_input(array('id' => 'username', 'name' => 'username')); ?>
    </div>
    <label>Password:</label>
    <div>
        <?php echo form_password(array('id' => 'password', 'name' => 'password')); ?>
    </div>
    <div>
        <?php echo form_submit(array('name' => 'submit'),'Login'); ?>
    </div>
    <?php echo form_close(); ?>
</div>
</body>
</html>  

help please how can I solve this error?

Link to comment
https://forums.phpfreaks.com/topic/237545-need-help-with-php-url-not-found/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.