flohuaba
Neues Mitglied
Hallo,
ich habe auf meiner Seite https://www.christianmaier.net/konzerte/ zwei Tabellen untereinander mit jeweils einem Künstler und dessen Daten.
Ich möchte die beiden "Touren" in eine Tabelle zusammenfügen und die Sortierung nach Datum behalten. Aktuell sind die beiden Tabellen so:
<table>
<thead>
<tr>
<th>Datum</th>
<th>Einlass</th>
<th>Beginn</th>
<th>Tour</th>
<th>Ticket URL</th>
<th>Ticket Hotline</th>
<th>Location</th>
<th>Strasse</th>
<th>PLZ</th>
<th>Ort</th>
</tr>
</thead>
<tbody class="cp-artist" data-size="100" data-artist-id="fe527fe0-03c7-4eb6-8088-6e524536ba43">
<tr>
<td class="cp-date" data-format="DD.MM.YYYY"></td>
<td class="cp-entrance" data-format="HH:mm">--:--</td>
<td class="cp-start" data-format="HH:mm">--:--</td>
<td class="cp-tour meineEigeneCSSKlasse" style="font-weight:bold">---</td>
<td class="cp-ticketURL" data-link-name="Hier klicken" data-link-target="_blank">---</td>
<td class="cp-ticketPhone">---</td>
<td class="cp-locationName">---</td>
<td class="cp-locationStreet">---</td>
<td class="cp-locationZip">---</td>
<td class="cp-locationCity" style="font-weight:bold">---</td>
</tr>
</tbody>
</table>
und die Zweite
<table>
<thead>
<tr>
<th>Datum</th>
<th>Einlass</th>
<th>Beginn</th>
<th>Tour</th>
<th>Ticket URL</th>
<th>Ticket Hotline</th>
<th>Location</th>
<th>Strasse</th>
<th>PLZ</th>
<th>Ort</th>
</tr>
</thead>
<tbody class="cp-artist" data-size="100" data-artist-id="ab7d8990-393e-4242-ba41-7897a1bd17c1">
<tr>
<td class="cp-date" data-format="DD.MM.YYYY"></td>
<td class="cp-entrance" data-format="HH:mm">--:--</td>
<td class="cp-start" data-format="HH:mm">--:--</td>
<td class="cp-tour meineEigeneCSSKlasse" style="font-weight:bold">---</td>
<td class="cp-ticketURL" data-link-name="Hier klicken" data-link-target="_blank">---</td>
<td class="cp-ticketPhone">---</td>
<td class="cp-locationName">---</td>
<td class="cp-locationStreet">---</td>
<td class="cp-locationZip">---</td>
<td class="cp-locationCity" style="font-weight:bold">---</td>
</tr>
</tbody>
</table>
Könnt ihr mir helfen und die beiden "data-artist-id"s in eine Tabelle integrieren?
Vielen Dank
ich habe auf meiner Seite https://www.christianmaier.net/konzerte/ zwei Tabellen untereinander mit jeweils einem Künstler und dessen Daten.
Ich möchte die beiden "Touren" in eine Tabelle zusammenfügen und die Sortierung nach Datum behalten. Aktuell sind die beiden Tabellen so:
<table>
<thead>
<tr>
<th>Datum</th>
<th>Einlass</th>
<th>Beginn</th>
<th>Tour</th>
<th>Ticket URL</th>
<th>Ticket Hotline</th>
<th>Location</th>
<th>Strasse</th>
<th>PLZ</th>
<th>Ort</th>
</tr>
</thead>
<tbody class="cp-artist" data-size="100" data-artist-id="fe527fe0-03c7-4eb6-8088-6e524536ba43">
<tr>
<td class="cp-date" data-format="DD.MM.YYYY"></td>
<td class="cp-entrance" data-format="HH:mm">--:--</td>
<td class="cp-start" data-format="HH:mm">--:--</td>
<td class="cp-tour meineEigeneCSSKlasse" style="font-weight:bold">---</td>
<td class="cp-ticketURL" data-link-name="Hier klicken" data-link-target="_blank">---</td>
<td class="cp-ticketPhone">---</td>
<td class="cp-locationName">---</td>
<td class="cp-locationStreet">---</td>
<td class="cp-locationZip">---</td>
<td class="cp-locationCity" style="font-weight:bold">---</td>
</tr>
</tbody>
</table>
und die Zweite
<table>
<thead>
<tr>
<th>Datum</th>
<th>Einlass</th>
<th>Beginn</th>
<th>Tour</th>
<th>Ticket URL</th>
<th>Ticket Hotline</th>
<th>Location</th>
<th>Strasse</th>
<th>PLZ</th>
<th>Ort</th>
</tr>
</thead>
<tbody class="cp-artist" data-size="100" data-artist-id="ab7d8990-393e-4242-ba41-7897a1bd17c1">
<tr>
<td class="cp-date" data-format="DD.MM.YYYY"></td>
<td class="cp-entrance" data-format="HH:mm">--:--</td>
<td class="cp-start" data-format="HH:mm">--:--</td>
<td class="cp-tour meineEigeneCSSKlasse" style="font-weight:bold">---</td>
<td class="cp-ticketURL" data-link-name="Hier klicken" data-link-target="_blank">---</td>
<td class="cp-ticketPhone">---</td>
<td class="cp-locationName">---</td>
<td class="cp-locationStreet">---</td>
<td class="cp-locationZip">---</td>
<td class="cp-locationCity" style="font-weight:bold">---</td>
</tr>
</tbody>
</table>
Könnt ihr mir helfen und die beiden "data-artist-id"s in eine Tabelle integrieren?
Vielen Dank