문제

So I have a dynamic link and I wanted to write the dynamic link like this:

echo "<a href='".base_url('browse/category/').$all_categories[$j]['id']."'>";

However the link appears to be like this...

www.example.com/browse/category2

There is no slash between the category and the dynamic number (2). So i figured another way but i think it is a messy way like this:

base_url('browse/category')."/".$all_categories[$j]['id']

Is there a better way to do this??

Many thanks!

도움이 되었습니까?

해결책

Try this:

echo base_url('browse/category/'.$all_categories[$j]['id']);

Output:

http://example.com/browse/category/2

다른 팁

echo base_url().'browse/category/'.$all_categories[$j]['id']);

This is another way

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top