saving php5 version
This commit is contained in:
commit
c2c1ee7b9b
46 changed files with 817 additions and 0 deletions
16
main.php
Executable file
16
main.php
Executable file
|
|
@ -0,0 +1,16 @@
|
|||
<?php
|
||||
$query=mysql_query("SELECT `first_id` FROM `games` WHERE `scoregame` = 'TRUE' ORDER BY `games`.`datetime` DESC LIMIT 0 , 1",DB);
|
||||
$data=mysql_fetch_array($query);
|
||||
$BODY.='<br><br><table class="the_ring" align="center">
|
||||
<tr>
|
||||
<td>
|
||||
<img src="./images/the_ring.png" width="350" height="239" border="" alt="">
|
||||
</td>
|
||||
<td>
|
||||
aktueller Ringträger ist:<br>
|
||||
<br>'.user_id_to_alias($data['first_id']).'
|
||||
</td>
|
||||
</tr></table>';
|
||||
$BODY.="<br><br>";
|
||||
$BODY.='<a href="index.php?page=poker_pott" target="_top">Tabelle zur Aufteilung des Pott (Gewinnausschüttung)</a>';
|
||||
?>
|
||||
Loading…
Add table
Add a link
Reference in a new issue