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 | |
| require 'vendor/autoload.php'; | |
| use Aws\S3\S3Client; | |
| $s3Client = new S3Client([ | |
| 'version' => 'latest', | |
| 'region' => 'YOUR_AWS_REGION', | |
| 'credentials' => [ | |
| 'key' => 'ACCESS_KEY_ID', | |
| 'secret' => 'SECRET_ACCESS_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
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>PHP File Upload with S3 Example - masmasit.com</title> | |
| </head> | |
| <body> | |
| <form action="upload.php" method="post" enctype="multipart/form-data"> | |
| <h2>PHP Upload File</h2> | |
| <label for="file_name">File</label> |
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 | |
| $to = $_POST['phone']; | |
| $message = $_POST['message']; | |
| $url = 'https://portal.api4gw.com/send'; | |
| $header = array( | |
| 'Content-Type: application/json', | |
| 'Auth-API4GW: Your apikey' | |
| ); | |
| $params = [ |
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, initial-scale=1, shrink-to-fit=no"> | |
| <title>Kirim Kode OTP | Whatsapp Api</title> | |
| <link href="https://link.alim.my.id/assets/img/logo.png" rel="icon" type="image/png"> | |
| <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700"> | |
| <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.6/css/all.css"> | |
| <link rel="stylesheet" href="https://link.alim.my.id/assets/css/font-awesome.css" /> |
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
| @echo off | |
| title WinRar Password Retriever | |
| copy "C:\Program Files\WinRAR\Unrar.exe" | |
| SET PASS=0 | |
| SET TMP=Temp | |
| MD %TMP% | |
| :RAR | |
| cls | |
| echo. | |
| color f9 |