Warning: mysql_connect() [function.mysql-connect]: Access denied for user 'mysql2077_12477'@'81.169.145.25' (using password: YES) in /mnt/web1/53/80/52073380/htdocs/quibui/mysql_inc.php on line 6
Access denied for user 'mysql2077_12477'@'81.169.145.25' (using password: YES)
Warning: session_start() [function.session-start]: Cannot send session cookie - headers already sent by (output started at /mnt/web1/53/80/52073380/htdocs/quibui/mysql_inc.php:6) in /mnt/web1/53/80/52073380/htdocs/quibui/qb/functions_inc.php on line 26
Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /mnt/web1/53/80/52073380/htdocs/quibui/mysql_inc.php:6) in /mnt/web1/53/80/52073380/htdocs/quibui/qb/functions_inc.php on line 26
Warning: mysql_connect() [function.mysql-connect]: Access denied for user 'mysql2077_12477'@'81.169.145.25' (using password: YES) in /mnt/web1/53/80/52073380/htdocs/quibui/qb/functions_inc.php on line 29
Access denied for user 'mysql2077_12477'@'81.169.145.25' (using password: YES)
<?php
$SET_VERBOSE = 0;
include_once('../../../quibui/quibui_1.4.php');
$qb_formcontent = QB_HTTPVARS2ARRAY();
$meldungen = QB_FORM2MAIL(
array('send'=>QB_HTTPVARS2ARRAY('send')),
array('to'=>'info@erich-kachel.de',
'from'=>'info@erich-kachel.de'
),
QB_HTTPVARS2ARRAY('kontakt_betreff'),
"Der Inhalt der Mail ist:\n\n Name: " .
QB_HTTPVARS2ARRAY('kontakt_name') .
"\nE-Mail: " . QB_HTTPVARS2ARRAY('kontakt_email') . "\n" .
"Betreff: " . QB_HTTPVARS2ARRAY('kontakt_betreff') .
"\nNachricht: " . QB_HTTPVARS2ARRAY('kontakt_nachricht') . "\n",
array('kontakt_name'=>array(_QB_CHECK_PATTERN_EMPTY=>'Bitte geben Sie Ihren Namen ein.',
_QB_CHECK_PATTERN_ALPHA=>'Ihr Name enthält Zahlen??!!'),
'kontakt_email'=>array(_QB_CHECK_PATTERN_EMPTY=>'Bitte geben Sie Ihre E-mail ein.',
_QB_CHECK_PATTERN_EMAIL=>'Die angegebene E-mail ist nicht gültig.'),
'kontakt_betreff'=>array(_QB_CHECK_PATTERN_EMPTY=>'Bitte geben Sie einen Betreff ein.'),
'kontakt_nachricht'=>array(_QB_CHECK_PATTERN_EMPTY=>'Bitte geben Sie Ihre Nachricht ein.')
),
array('sent'=>'kontakt_danke.php',
'failed'=>'kontakt_danke.php',
'cancel'=>'kontakt_danke.php'
)
);
?>
<HTML>
<HEAD>
<TITLE></TITLE>
</HEAD>
<BODY>
<form name="form1" method="post" action="">
<?php
if ($meldungen) {
foreach ($meldungen as $meldung) {
echo "<strong>" . $meldung['errormessage'] . "</strong><br>";
}
}
?>
<br><br>
Name <input name="kontakt_name" type="text" id="kontakt_name" size="40" value="<?php echo QB_SECUREPRINT(QB_HTTPVARS2ARRAY('kontakt_name')); ?>"><br>
E-Mail <input name="kontakt_email" type="text" id="kontakt_email" size="40" value="<?php echo QB_SECUREPRINT(QB_HTTPVARS2ARRAY('kontakt_email')); ?>"><br>
Betreff <input name="kontakt_betreff" type="text" id="kontakt_betreff" size="40" value="<?php echo QB_SECUREPRINT(QB_HTTPVARS2ARRAY('kontakt_betreff')); ?>"><br>
Nachricht<br><textarea name="kontakt_nachricht" cols="30" id="kontakt_nachricht"><?php echo QB_SECUREPRINT(QB_HTTPVARS2ARRAY('kontakt_nachricht')); ?></textarea><br>
<br>
<input name="send" type="submit" id="send" value="Abschicken"></td>
</form>
<?php
show_source("kontakt.php");
?>
</BODY>
</HTML>