This is my code, and its showing a "Submit Query" button, how can I change it's name ?
<form method="post">
<input type="submit" name="submit">
</form>
<?php
if(isset($_POST['submit'])){
$output = shell_exec('cd /home && ls');
echo "<pre>$output</pre>";
}
?>