This file contains 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
#!/bin/bash | |
echo "Please enter the name of the new DB to create:" | |
read NEW_DB | |
echo "Please enter the name of the new DB username:" | |
read NEW_USER | |
echo "Please enter the name of the new DB password:" | |
read -s NEW_PASS | |
echo "Please re-enter the name of the new DB password:" | |
read -s NEW_PASS_CONFIRM |
This file contains 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 | |
session_start(); | |
$state = $_SESSION['state']; | |
$incomingState = $_GET['state']; | |
$tempCode = $_GET['code']; |