Mofre data
This commit is contained in:
+9
-7
@@ -13,23 +13,25 @@
|
||||
<body>
|
||||
<h1>WrenchBoard!</h1>
|
||||
<?php
|
||||
$dm ="http://localhost:9999/";
|
||||
$dm ="http://".$_SERVER['HTTP_HOST']."/";
|
||||
|
||||
$tArr =[
|
||||
'login',
|
||||
'signup',
|
||||
'userscards',
|
||||
'activejoblist'
|
||||
['login','What are you for really *******'],
|
||||
['signup','What are you for really *******'],
|
||||
['userscards','What are you for really *******'],
|
||||
['activejoblist','What are you for really *******']
|
||||
];
|
||||
|
||||
echo "<table class='table table-striped'>";
|
||||
foreach($tArr as $rr){
|
||||
$urlS = $dm.$rr.".php";
|
||||
echo "<tr><td>22</td><td><a href='".$urlS ."' target='BLANK'>".$urlS ."</a></td></tr>";
|
||||
$urlS = $dm.$rr[0].".php";
|
||||
echo "<tr><td>22</td><td><a href='".$urlS ."' target='BLANK'>".$urlS ."</a></td><td>".$rr[1]."</td></tr>";
|
||||
}
|
||||
|
||||
echo "</table>";
|
||||
|
||||
//foreach ($_SERVER as $parm => $value) echo "$parm = '$value'\n";
|
||||
|
||||
?>
|
||||
|
||||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script>
|
||||
|
||||
Reference in New Issue
Block a user