Hallo,
brauche etwas, das ich auf der site einbauen kann, das die Clanmembers bei dem training absagen können, falls sie nicht da sind....
gibt es irgendsoetwas???
verwendete ilchClan Version: 1.1
betroffene Homepage: externer Link
Hier kann eine Notiz zum Merk-Eintrag hinzugefügt werden (optional)
Geschlossen |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 | <?php define ( 'main' , TRUE ); require_once ( 'include/includes/config.php' ); require_once ( 'include/includes/func/db/mysql.php' ); db_connect(); if ( empty ( $_POST [ 'step' ]) ) { if ( filesize ( 'include/admin/trainanmeldung.php' ) > 4900){ $aphp = 'Auf dem WebSpace' ; } else { $aphp = 'Bitte ModDatei hochladen (include/admin/trainanmeldung.php)' ;} if ( filesize ( 'include/admin/templates/trainanmeldung.htm' ) > 3500){ $ahtm = 'Auf dem WebSpace' ; } else { $ahtm = 'Bitte ModDatei hochladen (include/admin/templates/trainanmeldung.htm)' ;} if ( filesize ( 'include/contents/trains.php' ) > 8800){ $cphp = 'Auf dem WebSpace' ; } else { $cphp = 'Bitte ModDatei hochladen (include/contents/trains.php)' ;} if ( filesize ( 'include/templates/trains.htm' ) > 3500){ $chtm = 'Auf dem WebSpace' ; } else { $chtm = 'Bitte ModDatei hochladen (include/contents/trains.htm)' ;} if ( filesize ( 'include/images/icons/admin/trainanmeldung.png' ) > 5300){ $apic = 'Auf dem WebSpace' ; } else { $apic = 'Bitte AdminBild hochladen (include/images/icons/admin/trainterm.png)' ;} echo '<form action= "installtrain.php" method= "POST" > <input type= "hidden" name= "step" value= "2" /> <table width= "100%" border= "0" cellspacing= "1" cellpadding= "3" align= "center" > <tr><td colspan= "2" ><b>Willkommen bei der Installation der TrainingsVerwaltung V2.5 vom BöhsenDavid</b></td></tr> <tr><td></td><td><input type= "submit" value= "Installieren" ></td></tr> </table></form> <table width= "50%" border= "2" cellspacing= "1" cellpadding= "1" > <tr><td width= "25%" >AdminTemplate</td><td width= "75%" align= "center" > '.$ahtm.' </td></tr> <tr><td width= "25%" >AdminContent</td><td width= "75%" align= "center" > '.$aphp.' </td></tr> <tr><td width= "25%" >TrainContent</td><td width= "75%" align= "center" > '.$cphp.' </td></tr> <tr><td width= "25%" >TrainTemplate</td><td width= "75%" align= "center" > '.$chtm.' </td></tr> <tr><td width= "25%" >AdminPicture</td><td width= "75%" align= "center" > '.$apic.' </td></tr> </table>'; } elseif ( $_POST [ 'step' ] == 2 ) { db_query("CREATE TABLE `prefix_traindates` ( `id` smallint(6) unsigned NOT NULL auto_increment, ` date ` int(20) NOT NULL, `type` varchar(10)NOT NULL, `squad` varchar(100) NOT NULL, `txt` text NOT NULL, PRIMARY KEY (`id`) ) COMMENT= 'powered by BöhserOnkel' ;"); db_query("CREATE TABLE `prefix_trainuser` ( `id` smallint(6) unsigned NOT NULL auto_increment, ` date ` int(20) NOT NULL, `user` varchar(50) NOT NULL, `teilnahme` varchar(30) NOT NULL, `type` varchar(10) NOT NULL, `squad` varchar(3) NOT NULL, PRIMARY KEY (`id`) ) COMMENT= 'powered by BöhserOnkel' ;"); $modtest = @db_fetch_assoc(db_query( "SELECT id FROM `prefix_modules` WHERE name = 'TrainAnmeldung'" )); if ( $modtest [ 'id' ] == '' ){ db_query( "INSERT INTO `prefix_modules`(`url`,`name`,`gshow`,`ashow`,`fright`) VALUES ('trainanmeldung','TrainAnmeldung', 1, 1, 1);" );} ?> <table width= "100%" border= "0" cellspacing= "1" cellpadding= "3" align= "center" > <tr><td colspan= "2" ><b>Die TrainingsVerwaltung V2.5 wurden erfolgreich installiert</b></td></tr> <tr><td colspan= "2" ><b>Du solltest nun die installtrain.php löschen!</b></td></tr> <tr><td colspan= "2" ><br /><br /><b>Copyright [BU*M]BöhserOnkel alias BöhserDavid</b></td></tr> </table> <?php } ?> |
1 | db_query("INSERT INTO `prefix_modules`(`url`,`name`,`gshow`,`ashow`,`fright`) VALUES ('trainanmeldung','TrainAnmeldung', 1, 1, 1);");} |
Geschlossen | ||
![]() |
Zurück zu Fehlersuche und Probleme |