Link Klinken voor push notification
Sebastian Mollet
31/01/2014 04:53:07Ik ben nieuw hier en ik zit al tijdje te prutsen om het geen voor elkaar te krijgen wat ik wil is als er op een link klik dat deze script actief word zo dat ik een pushnotification krijg
Ik hoor graag meer van jullie wie mij even op weg kan helpen hier ik heb al van alles geprobeerd
De site waar die script en bij hordende app is www.pushover.net
M.V.G
een nieuw lid Sebastian
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php
curl_setopt_array($ch = curl_init(), array(
CURLOPT_URL => "https://api.pushover.net/1/messages.json",
CURLOPT_POSTFIELDS => array(
"token" => "****",
"user" => "******",
"device" => "TranceFormers-iPad",
"sound" => "incoming",
"title" => "Muziek download",
"message" => "download mp3",
)));
curl_exec($ch);
curl_close($ch);
?>
curl_setopt_array($ch = curl_init(), array(
CURLOPT_URL => "https://api.pushover.net/1/messages.json",
CURLOPT_POSTFIELDS => array(
"token" => "****",
"user" => "******",
"device" => "TranceFormers-iPad",
"sound" => "incoming",
"title" => "Muziek download",
"message" => "download mp3",
)));
curl_exec($ch);
curl_close($ch);
?>
Ik hoor graag meer van jullie wie mij even op weg kan helpen hier ik heb al van alles geprobeerd
De site waar die script en bij hordende app is www.pushover.net
M.V.G
een nieuw lid Sebastian
- Aar -:
Ik heb even je privégegevens verwijderd uit je post.
Gewijzigd op 31/01/2014 08:41:32 door - Ariën -
PHP hulp
23/11/2024 09:33:05Et voila:
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php
if (isset($_GET['action'])) {
if($_GET['action'] == "send") {
curl_setopt_array($ch = curl_init(), array(
CURLOPT_URL => "https://api.pushover.net/1/messages.json",
CURLOPT_POSTFIELDS => array(
"token" => "****",
"user" => "***",
"device" => "TranceFormers-iPad",
"sound" => "incoming",
"title" => "Muziek download",
"message" => "download mp3",
)));
curl_exec($ch);
curl_close($ch);
} else {
echo "Deze keuze bestaat niet!";
}
} else {
echo '<a href="?action=send">Verstuur</a>';
}
?>
if (isset($_GET['action'])) {
if($_GET['action'] == "send") {
curl_setopt_array($ch = curl_init(), array(
CURLOPT_URL => "https://api.pushover.net/1/messages.json",
CURLOPT_POSTFIELDS => array(
"token" => "****",
"user" => "***",
"device" => "TranceFormers-iPad",
"sound" => "incoming",
"title" => "Muziek download",
"message" => "download mp3",
)));
curl_exec($ch);
curl_close($ch);
} else {
echo "Deze keuze bestaat niet!";
}
} else {
echo '<a href="?action=send">Verstuur</a>';
}
?>
Gewijzigd op 31/01/2014 08:40:29 door - Ariën -