Vorlage:Legende: Unterschied zwischen den Versionen

Aus Afterbuy-Wiki
Wechseln zu:Navigation, Suche
(Die Seite wurde neu angelegt: „<table class="table table-hover sortable"> <tr> <th>Name</th><th>Beschreibung</th> </tr> <tr> <td class="font-weight-bold">Lorem...</td> <td>...ipsu…“)
 
Zeile 5: Zeile 5:
  
  
<tr>
+
<td class="font-weight-bold">Lorem...</td>
+
 
<td>...ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam</td>
 
</tr>
 
</table>
 
  
 
<phptag>
 
<phptag>
array_shift( $argv );
+
if(is_array($argv) && !empty($argv)){
print_r($argv);
+
array_shift( $argv );
 +
if(isset($argv[0]) && trim($argv[0])!=""){
 +
$lines=explode('>>',$argv[0]);
 +
foreach($lines as $line){
 +
  if(trim($line)!=""){
 +
  $cells=explode('::',trim($line));
 +
  echo '<tr>
 +
<td class="font-weight-bold">'.addslashes ( nl2br($cells[0]) ).'</td>
 +
<td>'.addslashes ( nl2br($cells[1]) ).'</td>
 +
</tr>';
 +
  }
 +
}
 +
}
 +
}
 +
 
 
</phptag>
 
</phptag>
 +
</table>

Version vom 15. April 2021, 14:01 Uhr

NameBeschreibung