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
| header("Access-Control-Allow-Origin: *"); //add this CORS header to enable any domain to send HTTP requests to these endpoints: | |
| header("Access-Control-Allow-Methods: GET, POST"); | |
| header("Access-Control-Allow-Headers: Content-Type"); |
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"> | |
| <meta name="viewport" | |
| content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"> | |
| <meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
| <title>Document</title> | |
| <style> | |
| 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
| function curlPost($url, array $params){ | |
| $result = file_get_contents($url, false, stream_context_create(array( | |
| 'http' => array( | |
| 'method' => 'POST', | |
| 'header' => 'Content-type: application/x-www-form-urlencoded', | |
| 'content' => http_build_query($params) | |
| ) | |
| ))); | |
| return $result; | |
| } |
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
| .show-flex-xl { | |
| display: -webkit-box; | |
| display: -webkit-flex; | |
| display: -ms-flexbox; | |
| display: flex | |
| } | |
| .shown-xl { | |
| display: block!important | |
| } |
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 | |
| //Создаем многомерный числовой (индексный) массив | |
| $arr1 = array( | |
| array( | |
| 'KIA', | |
| 'BMW', | |
| 'MAZDA', | |
| 'OPEL' | |
| ), | |
| array( |
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
| app.use((req, res, next) => { | |
| res.header("Access-Control-Allow-Origin", "*"); | |
| res.header("Access-Control-Allow-Headers", "Origin, X-Requested-With, Content-Type, Accept"); | |
| next(); | |
| }); |
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
| let request = require('request'); | |
| let fs = require('fs'); | |
| let FormData = require('form-data'); | |
| let tokken = '828922035:AAGr4ZF1yoISDiKOFt_rBHi1k6q8Cz-uuHk'; | |
| let chatId = -1001320778442; | |
| let url = 'https://api.telegram.org/bot' + tokken + '/sendPhoto'; | |
| var formData = { | |
| chat_id: chatId, |
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
| for (const key of Object.keys(os)) { | |
| console.log(key, os[key]); | |
| } |
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
| [[!AjaxForm? | |
| &form=`tpl.AjaxForm` | |
| &snippet=`FormIt` | |
| &hooks=`recaptchav2,email,FormItSaveForm` | |
| &emailSubject=`Тестовое сообщение` | |
| &emailTo=`[email protected]` | |
| &emailFrom=`[email protected]` | |
| &emailTpl=`tpl.email` | |
| &validate=`name:minLength=^2^, | |
| email:email:required, |
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
| /* font weight */ | |
| .font-weight-100 { font-weight:100 !important} | |
| .font-weight-300 { font-weight:300 !important} | |
| .font-weight-400 { font-weight:400 !important} | |
| .font-weight-600 { font-weight:600 !important} | |
| .font-weight-700 { font-weight:800 !important} | |
| .font-weight-800 { font-weight:800 !important} | |
| /* text property */ | |
| .text-transform-unset { text-transform:unset !important} |
NewerOlder