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:
When I look at the source it shows:
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:
The docs show I am using form_open() correctly:
https://www.codeigniter.com/userguide3/h...-functions
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
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/createThe 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