This commit is contained in:
Olu Amey
2023-02-13 14:16:44 -05:00
parent 2477672638
commit 35cfb9edd3
5 changed files with 190 additions and 17 deletions
+9 -5
View File
@@ -16,16 +16,20 @@
$dm ="http://".$_SERVER['HTTP_HOST']."/";
$tArr =[
['login','What are you for really *******'],
['signup','What are you for really *******'],
['userscards','What are you for really *******'],
['activejoblist','What are you for really *******']
['login','What are you for really *******'],
['signup','What are you for really *******'],
['userscards','What are you for really *******'],
['wallet','What are you for really *******'],
['activejoblist','What are you for really *******'],
['startjoblist', 'List Jobs in the market space']
];
$i=0;
echo "<table class='table table-striped'>";
foreach($tArr as $rr){
$i++;
$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 "<tr><td style='width: 20px'>$i</td><td style='width: 120px'><a href='".$urlS ."' target='BLANK'>".$urlS ."</a></td><td>".$rr[1]."</td></tr>";
}
echo "</table>";