Hey does anybody know where i can get a contact tool like Habbo Works?
http://www.habbo-works.com/contacttool/
Thanks ;)
Printable View
Hey does anybody know where i can get a contact tool like Habbo Works?
http://www.habbo-works.com/contacttool/
Thanks ;)
There aren't any around at the moment as far as I know. You'll need to make it yourself, pay someone to make it for you or hope that someone feels nice :P
Tim
It just basicly form's and url's.
Shouldnt be that hard?;)
im no good with coding forms..lol so im stuffed.
Whats the form handler used to got do with that system though? u could easly just use a free external one, or simply copy and paste one of the millions of free scripts out there. "/
Its nothing but a few links and pages. That end up pointing to a run of the mill form which itself probably points to a form handler of some sort "/
I made one a few weeks ago for my fansite. Basically you just need to do steps or urls like suggested above.
You could work something around:
PHP Code:<?
if($_POST['step'] == 2)
{
// Step 1
}
// Form with hidden input
// which is named step and
// a value of 2
?>
Thanks ill try that. +Rep
Heres just a really quick script i just made.
Its basic but you can adapt it;)
PHP Code:<style>
body
{
font-family: Verdana;
font-size: 10px;
margin: 0px;
}
tr, td
{
font-family: Verdana;
font-size: 10px;
}
a
{
color: #0066FF;
text-decoration: underline;
}
a:hover
{
color: #0066FF;
text-decoration: none;
}
</style>
<?php
switch ($_GET['action']) {
case 'contact':
?>
CONTACT PAGE
<?
if($_GET['view']== 'contact'){
?>
<p><form action='?action=email' method='post'>
Message<br>
<textarea rows='10' cols='24' name='message' tabindex='4'></textarea><br><br>
<input type='text' name='email' style=\"font-size: 10px\">
<br><br>
<input type='submit' value='Reply' name='submit' style=\"font-size: 10px\"></p>
</form>
<?
}
break;
case 'enquiries':
?>
ENQUIRIES HERE
<?
break;
case 'help':
?>
HELP PAGE HERE
<?
break;
case 'email':
$headers = 'Help Tool Submission' . "\r\n" .
'Reply-To: DO NOT REPLY' . "\r\n";
$email = 'YOUR EMAIL HERE';
$subject = $_POST['subject'];
Message : $message = $_POST['message'];
Email : $theiremail = $_POST['email'];
mail($email, $subject, "
Dear Admin,\nA email has been sent to you by the helptool on your site. Here is what it said :\n------------------------------------------\n
$message\n
$theiremail\n\n------------------------------------------\n
\n\n
Thanks,\n
Help Tool\n
DO NOT REPLY TO THIS EMAIL.", $headers);
break;
default:
?>
DEFAULT PAGE HERE!
<?
}
?>