[eluser]TheFuzzy0ne[/eluser]
That's quite strange. First of all, I recommend that you set your controller method to assume that one hasn't been provided:
Code:
function dvdinfo($id=NULL)
{
if ( ! $id) { show_error('No ID specified'); }
}
Then you can code your method to fail gracefully if an ID is not provided.
What does:
Code:
echo $this->uri->uri_string();
give you when called from within your method?