Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

275
Vistas
Form action url not working in codeigniter

I am trying to use url in form action without using form helper in codeigniter but it's not working.

<form method="post"  action="<?php echo base_url().'test'; ?>">
<form method="post"  action="/main_controller/test">

controller function

public function test(){
    echo "test function";
}

the error I am getting

http://prntscr.com/eyzhdd

about 4 years ago · Santiago Trujillo
3 Respuestas
Responde la pregunta

0

It should be

<form method="post"  action="<?php echo base_url()?>index.php/main_controller/test">

as well base_url() should define as(application/config/config.php)

https://stackoverflow.com/
                        ^ on the end

$config['base_url'] = 'https://stackoverflow.com/'; # Line 26 if version 3.0+

<?php echo base_url()?>index.php/main_controller/test
              ^            ^           ^           ^
           base URL      index Controller Name   Method name

Check out the Codeigniter documentation.

about 4 years ago · Santiago Trujillo Denunciar

0

<form method="post"  action="<?php echo base_url().'/main_controller/test/'; ?>">

Use Like this and define base url in http://www.example.com/ config.php file

about 4 years ago · Santiago Trujillo Denunciar

0

In order to use base_url(), you must first have the URL Helper loaded. This can be done either in application/config/autoload.php (around line 67):

$autoload['helper'] = array('url');

Or, manually in controller:

$this->load->helper('url');

Then change

<form method="post"  action="<?php echo base_url().'test'; ?>">  

to

<form method="post"  action="<?php echo base_url()?>index.php/main_controller/test">

Finally add base url in application/config/config.php. For instance,

$config['base_url'] = 'http://example.com/';

By default, the index.php file will be included in your URLs: You can remove index.php from action url with .htaccess file. Please read documenation

about 4 years ago · Santiago Trujillo Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda