$opts = array('http' =>
array(
'method' => 'GET',
'timeout' => 120
)
);
$context = stream_context_create($opts);
$result = file_get_contents('http://example.com/get.php', false, $context);
<table><tr data-user-id="1"><td>…</td></tr></table>
document.addEventListener('click', function(ev){
if(ev.target.closest('[data-user-id]')){
let userID = ev.target.getAttribute('data-user-id');
/* дальше что-то делаем с этим ID */
}
});