使用PHP动态更改url的某些值

时间:2015-05-19 19:33:19

标签: php mysql

这就是我的网址: north.php?slot = 0

当我点击一个div时,我需要做的是更改插槽的值,我将它用作箭头。在我正在使用的div中:

//Initialize the ajax function (function($) { $.fn.getNumber = function() { $(this).load('number.html .giver'); }; })(jQuery); //Launch ajax function 3s after DOM is loaded $(function() { $('.receiver').delay(3000).queue(function(nxt) { $(this).getNumber(); }); }); //Launch ajax function if a button is clicked $('button').click(function() { $('.receiver').getNumber(); });

div是这样的:

getNumber

我从url收到的值为:

onclick="location.assign('north.php?slot=1')"

是头标记。现在我想使用此值来访问我的数据库中的内容并显示它

我在xampp服务器上这样做。我的表中有一个名为<a onclick="location.assign('north.php?slot=1')"><div class="arrow"></div></a>的列。

<?php
    $slot=$_GET['slot'];
?>

0 个答案:

没有答案