This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"status": 1, | |
"message": "success", | |
"data": [ | |
{ | |
"id": 506, | |
"recording_play_id": "636745433489244416.m4a", | |
"recording_duration": "00:39:09", | |
"recording_id": "34343", | |
"recording_name": "jeff bezos", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Learn about this code on MDN: https://developer.mozilla.org/en-US/docs/Web/CSS/table-layout --> | |
<style> | |
table { | |
table-layout: fixed; | |
width: 100%; | |
border-collapse: collapse; | |
} | |
th { | |
border: 1px solid blue; | |
overflow: hidden; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$input = "I'm am living on india"; | |
$removeWords = [ | |
'I', | |
'on', | |
'a', | |
'without doubt' | |
]; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
use Illuminate\Database\Seeder; | |
class RemoveWordsSeeder extends Seeder | |
{ | |
/** | |
* Run the database seeds. | |
* | |
* @return void |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Document</title> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue/2.5.17/vue.min.js"></script> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/axios/0.18.0/axios.min.js"></script> | |
</head> | |
<body> | |
<div id="app"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Services; | |
use App\ProjectFile; | |
use Illuminate\Http\File; | |
use Illuminate\Support\Facades\Storage; | |
use Symfony\Component\HttpFoundation\Request; | |
use App\Contracts\IFileService; | |
use App\Services\ProofService; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@extends('layouts.app') | |
@section('content') | |
<div class="container"> | |
<div class="row justify-content-center"> | |
<div class="col-md-8"> | |
<div class="card"> | |
<div class="card-header">{{ __('Register') }}</div> | |
<div class="card-body"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
include 'Query.Inc.php'; | |
$Obj = new Query($DBName); | |
error_reporting(0); | |
$SiteURL = "https://".$_SERVER['HTTP_HOST']."/"; | |
$info = $_POST['info']; | |
$links = $_POST['links']; | |
$sql = "SELECT name, city, buyurl, imageurl FROM hotelDeal_landingPage LIMIT 0,5"; | |
$result = mysql_query($sql); | |
?> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function wLog($tag = 'Tag', $data = []) | |
{ | |
$logFile = null; | |
$timezone = date_default_timezone_get(); | |
date_default_timezone_set('Asia/Kolkata'); | |
if(!file_exists(WWW_ROOT . DS . 'ErLogs' . DS . 'logs.txt')) { |