$test = $_GET['nr'];
$class = new class;
echo $class->function($test);
我想$test
在它完全加载页面后增加。
问题是,我不知道怎么做。循环 $test 通常会显示很多错误。就像function cannot be declared again
我有相同的功能名称和不同的功能。这是相当长的代码。
有人知道我该怎么做吗?谢谢。
编辑:
当页面完全加载时,我希望它添加 + 1 $test
,然后用新变量刷新它。
我可以通过以下方式手动执行此操作:
$next = $test + 1;
echo "<a href='/index.php?nr=". $next . "'>Next page</a>";