Welcome Guest, Not a member yet? Register   Sign In
form helper form_open() oddness
#1

Hello, I'm a newb.. going through the tutorial.

V. 3.0.6

I believe I've followed the tutorial correctly (copy / paste), but I'm getting a weird action with:

Code:
<?php echo form_open('news/create'); ?>



When I look at the source it shows:
Code:
<form action="<mydomain>/CI306/index.php/news/create" method="post" accept-charset="utf-8">

It does not list the protocol in the URI (http://), so my browser (firefox) treats it like an extension of the query string.. thus producing a URL of:

Code:
<mydomain>/CI306/index.php/<mydomain>/CI306/index.php/news/create

The docs show I am using form_open() correctly:
https://www.codeigniter.com/userguide3/h...-functions

Quote:Here’s a simple example:
echo form_open('email/send');

The above example would create a form that points to your base URL plus the “email/send” URI segments, like this:
<form method="post" accept-charset="utf-8" action="http://example.com/i

Any advice appreciated.  I can force the correct URL by adding the entire query string with the protocol, but that sure seems clunky.

Thx,
Donovan
Reply


Messages In This Thread
form helper form_open() oddness - by dbrooke - 08-01-2016, 10:19 AM
RE: form helper form_open() oddness - by InsiteFX - 08-02-2016, 03:06 AM
RE: form helper form_open() oddness - by dbrooke - 08-02-2016, 04:56 AM



Theme © iAndrew 2016 - Forum software by © MyBB