-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdb.php
More file actions
23 lines (16 loc) · 669 Bytes
/
Copy pathdb.php
File metadata and controls
23 lines (16 loc) · 669 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php
// You can sign up for a Twilio account at: https://www.twilio.com/try-twilio
// Set the AccountSid and AuthToken from twilio.com/user/account
$AccountSid = "ACxxxxxxxxx";
$AuthToken = "xzabc123";
// Your Prowl API key
// If you dont have a Prowl key, go to:
// https://www.prowlapp.com/register.php
$prowl = new Prowl('abc123456xyz');
// Your database details
$host = ""; // Usually Localhost
$db_username = ""; // Database Username
$db_password = ""; // Database Password
$chosen_database = ""; // The database where messages table is stored
$con=mysqli_connect($host,$db_username,$db_password,$chosen_database); // MySQL connection details.
?>