// Все что ниже - моя html страница
<html>
<head>
<script src="/js/jquery-3.1.1.min"></script>
<script>
function init() {
var first = 1;
var second = 2;
var third = 3;
$.get('my.php',{a:first,b:second,c:third});
});
</script>
</head>
<body onClick="init()">
<a href="my.php">Button</a>
</body>
</html>
PHP Notice: Undefined index: a in /home/cPbHKZ/prog.php on line 2
PHP Notice: Undefined index: b in /home/cPbHKZ/prog.php on line 3
PHP Notice: Undefined index: c in /home/cPbHKZ/prog.php on line 4