Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • fsini-informatik/fsfahrttool
  • kleemeis/fsfahrttool
2 results
Show changes
Showing
with 2670 additions and 1229 deletions
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
......@@ -2,6 +2,5 @@
<?php
// phpinfo();
// safe key generation:
//$bytes = openssl_random_pseudo_bytes(6);
//$hex = bin2hex($bytes);
echo 'go away! nothing for you to see here!';
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
ALTER TABLE `bachelor`
ADD `signupstats` TEXT DEFAULT NULL;
\ No newline at end of file
ALTER TABLE `fahrten`
ADD `disclaimlink` VARCHAR(255) NOT NULL DEFAULT '';
\ No newline at end of file
ALTER TABLE `bachelor`
MODIFY `bachelor_id` varchar(16) NOT NULL;
CREATE TABLE `archive` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`fahrt_id` int(11) NOT NULL,
`fahrt_name` text CHARACTER SET utf8 NOT NULL,
`tab1` text CHARACTER SET utf8 NOT NULL,
`tab2` text CHARACTER SET utf8 NOT NULL,
`tab3` text CHARACTER SET utf8 NOT NULL,
`moniTab1` text CHARACTER SET utf8 NOT NULL,
`moniTab2` text CHARACTER SET utf8 NOT NULL,
`moniTab3` text CHARACTER SET utf8 NOT NULL,
`moniTabIO` text CHARACTER SET utf8 NOT NULL,
`moniTabIOExtra` text CHARACTER SET utf8 NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
\ No newline at end of file
ALTER TABLE `fahrten` ADD `isSummer` TINYINT(1) NOT NULL DEFAULT '0' ;
ALTER TABLE `bachelor` ADD `mGame` TINYINT(1) NOT NULL DEFAULT '1' , ADD `isOrga` TINYINT(1) NOT NULL DEFAULT '0' ;
\ No newline at end of file
This diff is collapsed.
<form method="post">
<input name="user" type="text" />
<input name="password" type="password" />
<input type="submit" value="anmelden" />
</form>
This diff is collapsed.
This diff is collapsed.