| tensh |
|
|---|---|
|
Hi; The following code:
header('Location: '.cot_url('plug', 'e=offer&s=details&id='.$offid));
header('Location: '.cot_url('plug', array('e' => 'offer', 's' => 'details', 'id' => $offid)));
gives me urls with /offer?s=details&id=14 - which don't work.
When I use: header('Location: index.php?e=offer&s=details&id='.$offid); - then it works.
What am I doing wrong?
I also have problem with AJAX urls like admin/config#get;n=edit&o=plug&p=html (should be admin/config?n=edit&o=plug&p=html) - they also don't work at all.
Any help please?
|
|
This post was edited by tensh (2012-12-06 09:04, 6 months ago) |
| Alex300 |
|
|---|---|
|
try this:
cot_redirect(cot_url('plug', array('e' => 'offer', 's' => 'details', 'id' => $offid), '', true));
It should work сot_url() fourth parameter must be 'TRUE' for redirects. Приходится бежать со всех ног, чтобы только оставаться на месте. А чтобы куда-то попасть, приходится бежать еще быстрее...
...Sorry for my english... Portal30.Ru |
| tensh |
|
|---|---|
|
Thank you very much, works like a charm :) |