added php
This commit is contained in:
@ -1,6 +1,24 @@
|
||||
<?php
|
||||
if(isset($_POST['action'])){
|
||||
echo("{'data':[{'url':'./vid.mp4'}]}");
|
||||
}else{
|
||||
echo("{'data':'$_POST[0]'}");
|
||||
$servername = "192.168.0.177";
|
||||
$username = "myuser";
|
||||
$password = "1qayxsw2";
|
||||
|
||||
// Create connection
|
||||
$conn = new mysqli($servername, $username, $password);
|
||||
|
||||
// Check connection
|
||||
|
||||
|
||||
if (isset($_POST['action'])) {
|
||||
$action = $_POST['action'];
|
||||
switch ($action) {
|
||||
case "getMovies":
|
||||
echo('{"data":[{"url":"./vid.mp4"}]}');
|
||||
break;
|
||||
}
|
||||
} else {
|
||||
if ($conn->connect_error) {
|
||||
echo('{"data":"error"}');
|
||||
// die("Connection failed: " . $conn->connect_error);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user