Hits: 16182
Try: ca/tecreations/ViewFile.php -- Online
<?php
global $variableValue;
//$variableValue = $_REQUEST['variableValue']; // because we want empty if not set so that html:placeholder='Placeholder', in
// // this case, VariableValue
//Fuck That! LOL!
$variableValue = (isset($_REQUEST['variableValue']) && !empty($_REQUEST['variableValue']) ? $_REQUEST['variableValue'] : "");
?>
<h4>Available For Storage - 3072 bytes</h4>
<form name="availableForStorage" id="availableForStorage" method="GET">
<label for="variableValue">
Variable Value:
</label>
<input type="text" value="<?php global $variableValue; if (!empty($variableValue)) echo $variableValue; ?>" placeholder="VariableValue" id='variableValue' name="variableValue" maxLength="3072" />
<br />
<input type="submit" value="Set" id='Set' name='Set' /><br />
</form>
<hr />