necm1
Member
- Jan 27, 2014
- 111
- 16
Hey people,
I want to introduce one of my new projects.
There is a website where you can warn people before that eg this person is a ripper. In principle actually constructed Simple, and you can create Ripper report requests by filling in a form, and will be checked by the administrator. There there is also a possibility that the Ripper can create a ticket yourself and describe your story könnnen, so that we can remove the entry.
We come to a taster:
Code snippets:
As I said, right up Simple.
If people have interest to participate in the project, was to report via PM or Skype me.
Skype: derpeteresel
DevBest: JazzerDEV
Sincerely,
JazzerDEV
I want to introduce one of my new projects.
There is a website where you can warn people before that eg this person is a ripper. In principle actually constructed Simple, and you can create Ripper report requests by filling in a form, and will be checked by the administrator. There there is also a possibility that the Ripper can create a ticket yourself and describe your story könnnen, so that we can remove the entry.
We come to a taster:
You must be registered for see links
You must be registered for see links
Code snippets:
PHP:
<?php
class Core {
public function InsertToDatabase() {
if(isset($_POST['opfer'])) {
$name = mysql_real_escape_string($_POST['name']);
$date = mysql_real_escape_string($_POST['date']);
$owned = mysql_real_escape_string($_POST['owned']);
if(empty($_POST['name']) || empty($_POST['date']) || empty($_POST['owned'])) {
echo '<div class="alert alert-danger">Bitte fülle alle Felder aus!</div>';
} else {
@mysql_query("INSERT INTO opfer (name, date, owned) VALUES ('$name', '$date', '$owned')");
}
}
}
public function TruncateTable() {
if(isset($_POST['leeren'])) {
@mysql_query("TRUNCATE opfer");
}
}
}
?>
As I said, right up Simple.
If people have interest to participate in the project, was to report via PM or Skype me.
Skype: derpeteresel
DevBest: JazzerDEV
Sincerely,
JazzerDEV