NFC

Permission denied.
Only a "Staff" user can edit here.
There are no staff today.

 

[insert_php]
$callback_url = «nfc://scan/?callback=https://saga.solutions/nfc/»;
$callback_url .= «?tagid={TAG-ID}»;
$callback_url .= «&ndef-text={NDEF-TEXT}»;
$encoded_callback_url = urlencode($callback_url);

$link = «nfc://scan/»;
$link .= «?callback=».$encoded_callback_url;
[/insert_php]
Click to scan NFC Tag

[insert_php]
if (isset($_GET[«tagid»])){
echo «My TAG ID : «.$_GET[«tagid»];
}
if (!isset($_GET[«ndef-text»])){
echo «My NDEF text : «.$_GET[«ndef-text»];
}
[/insert_php]