I am trying to passing a value, something like 2:03, in codeigniter controller function. But it is not working. If I send any int or char or something like '2:03:56:45' it works.
Can someone tell me please what is going wrong with '2:03'?
My code is here :
function get_value($point_code ){
echo $point_code;die();
}
here $point_code is 2:03
2:03or'2:03'? If there is a colon in it, it needs to be a string (in quotes).