[eluser]mmmx[/eluser]
[quote author="Ajaxboy" date="1354543972"]be sure to get the latest 5.3 (is stable also), then let me know if you continue to have this issue. Also make sure you are not passing them variables in the url, (if you pass an empty string or 0 still counts)[/quote]
Updated and still get the issue
I also checked with isset() and it isn't...
Code:
class Parmetro extends CI_Controller
{
function __construct()
{
parent::__construct();
}
function index()
{
}
function group($id=8)
{
echo "id=$id <br />";
if(!isset($id)) echo "id not set";
}
}
see also the screenshot.
What ese should I check?