Jump to content
  • 0

Помогите, пожалуйста!


ckopnuoh191
 Share

Question

Хотелось бы узнать можно ли сделать такой скрипт?

К примеру есть ссылка

www.site.ru/rex/exit.php?urlind=9876&flip=1&opk=1001

нужно что бы после каждого нажатия и перехода по ней менялась последняя цифра, т.е. была 1001 стала 1002

Link to comment
Share on other sites

13 answers to this question

Recommended Posts

  • 0

реализация зависит от более конкретных условий использования данной функции, это можно реализовать и js и php в последнем за счет сессий и куков или баз данных и файлов

Link to comment
Share on other sites

  • 0

цель этого скрипта?

данный скрипт будет отрабатывать для каждого пользователя в отдельности

т.е. счетчик посещения вряд ли получится это скорее листание страниц

Link to comment
Share on other sites

  • 0


<script>
function nextpage()
{
var tmp = new Array();
var param = new Array();
var get = window.location.search;
var url = window.location.href.split('?');
url = url[0];
if(get != '')
{
get = (get.substr(1)).split('&');
for(var i=0; i < get.length; i++)
{
tmp = get[i].split('=');
param[tmp[0]] = tmp[1];
}
if(param['opk'] !== undefined) param['opk'] = parseInt(param['opk'])+1;
else param['opk'] = 1;
url += '?';
get = '';
for(var key in param)
{
get += '&'+ param[key];
}
get = get.substr(1);
}
window.location.href = url + get;
}
</script>
<a onclick="nextpage();">Следующая</a>

вроде должно работать, скрипт качал от сюда и немного модернизировал

Link to comment
Share on other sites

  • 0

Можно и здесь

у меня тут есть другая идея, думаю ее будет проще осуществить

допустим есть 10 или более сайтов

www_site_ru/rex/exit.php?urlind=9876&flip=1&opk=1001

www_site_ru/rex/exit.php?urlind=9876&flip=1&opk=1001

...

www_site_ru/rex/exit.php?urlind=9876&flip=1&opk=1010

нужно что бы они грузились по очереди

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy