HEX
Server: Apache
System: Linux server2.voipitup.com.au 4.18.0-553.104.1.lve.el8.x86_64 #1 SMP Tue Feb 10 20:07:30 UTC 2026 x86_64
User: posscale (1027)
PHP: 8.2.29
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/posscale/subdomains/ecc/jason/Main.php
<style>
	th
	{
		text-align: center;
		padding: 2px;
		margin: 2px;
		background-color: #cccccc;
	}

	td
	{
		padding: 2px;
		margin: 2px;
		background-color: #eaeaea;
	}
</style>
<h1>Table: test_table</h1>
<table>
	<tr>
		<?
      for($i=0; $i<count($result['Field']); $i++)
      {
				?><th><?=$result['Field'][$i]?><br /><?=$result['Type'][$i]?><br /><?=$result['Key'][$i]?></th><?
      }
    ?>
	</tr>
  <?
		for($t=0; $t<$data['mysql_num_rows']; $t++)
		{
			?>
        <tr>
          <?
						for($i=0; $i<count($result['Field']); $i++)
            {
              ?><td><?=$data[$result['Field'][$i]][$t]?></td><?
            }
          ?>
        <tr>
			<?
		}
	?>
</table>

<h1>TEST POST</h1>
<h2>SQL INSERT</h2>
<form method="post" enctype="multipart/form-data" action="<?=$config['base_url']?>/sql_insert/">
  table: <input name="table" value="<?=$_POST['table']?>" /><br />
  data: <input name="data" value="<?=$_POST['data']?>" /><br />
  <input type="submit" />
</form>

<h2>SQL UPDATE</h2>
<form method="post" enctype="multipart/form-data" action="<?=$config['base_url']?>/sql_update/">
  table: <input name="table" value="<?=$_POST['table']?>" /><br />
  data: <input name="data" value="<?=$_POST['data']?>" /><br />
  where: <input name="where" value="<?=$_POST['where']?>" /><br />
  <input type="submit" />
</form>

<h2>SQL SELECT</h2>
<form method="post" enctype="multipart/form-data" action="<?=$config['base_url']?>/sql_select/">
  table: <input name="table" value="<?=$_POST['table']?>" /><br />
  fields: <input name="fields" value="<?=$_POST['fields']?>" /><br />
  where: <input name="where" value="<?=$_POST['where']?>" /><br />
  <input type="submit" />
</form>

<h2>DEBUG</h2>
<form method="post" enctype="multipart/form-data" action="<?=$config['base_url']?>/debug/">
  table: <input name="table" value="<?=$_POST['table']?>" /><br />
  data: <input name="data" value="<?=$_POST['data']?>" /><br />
  <input type="submit" />
</form>