This shows you the differences between two versions of the page.
| — |
kurs:php7_4 [2014/09/10 21:22] (current) |
||
|---|---|---|---|
| Line 1: | Line 1: | ||
| + | <code php> | ||
| + | <?php | ||
| + | print <<<karte | ||
| + | <html> | ||
| + | <body bgcolor='#99CC00'> | ||
| + | <h1>Speisekarte:</h1> | ||
| + | <table border=0> | ||
| + | <tr> | ||
| + | <td colspan=2><b>Menu 1</b></td> | ||
| + | </tr> | ||
| + | <tr> | ||
| + | <td width=20> </td> | ||
| + | <td>Rindsuppe mit Leberknödel</td> | ||
| + | </tr> | ||
| + | <tr> | ||
| + | <td width=20> </td> | ||
| + | <td>Ente mit Jägersalat</td> | ||
| + | </tr> | ||
| + | <tr> | ||
| + | <td colspan=2><b>Menü 2</b></td> | ||
| + | </tr> | ||
| + | <tr> | ||
| + | <td width=20> </td> | ||
| + | <td>Haifischflossensuppe</td> | ||
| + | </tr> | ||
| + | <tr> | ||
| + | <td width=20> </td> | ||
| + | <td>Rindfleisch Cow.Fun</td> | ||
| + | </tr> | ||
| + | </table> | ||
| + | karte; | ||
| + | ?> | ||
| + | </code> | ||