PDA

View Full Version : HabboHelp Contact Tool?



Flashbox
24-06-2007, 12:27 AM
Hey does anybody know where i can get a contact tool like Habbo Works?
http://www.habbo-works.com/contacttool/ (http://www.habbo-works.com/contacttool/)
Thanks ;)

timROGERS
24-06-2007, 06:25 AM
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

Assassinator
24-06-2007, 07:09 AM
It just basicly form's and url's.

Shouldnt be that hard?;)

Mentor
24-06-2007, 07:16 AM
It just basicly form's and url's.

Shouldnt be that hard?;)

Your giving it to much credit, its nothing but hyperlinks and urls. Theres nothin in it going beyond the most basic html combined with links to differnt page 2's or page 3's from those.

timROGERS
24-06-2007, 07:23 AM
Your giving it to much credit, its nothing but hyperlinks and urls. Theres nothin in it going beyond the most basic html combined with links to differnt page 2's or page 3's from those.

And then one block of PHP to either email the information or store it in a database :)

Flashbox
24-06-2007, 07:34 AM
im no good with coding forms..lol so im stuffed.

Mentor
24-06-2007, 07:58 AM
And then one block of PHP to either email the information or store it in a database :)
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 "/

Lilian
24-06-2007, 08:29 AM
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:

<?

if($_POST['step'] == 2)
{
// Step 1
}

// Form with hidden input
// which is named step and
// a value of 2

?>

Flashbox
24-06-2007, 08:30 AM
Thanks ill try that. +Rep

.eddie.
24-06-2007, 10:36 AM
Heres just a really quick script i just made.
Its basic but you can adapt it;)


<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!
<?
}
?>

Jamie.
28-06-2007, 08:33 PM
http://www.techtuts.com/forums/index.php?showtopic=4168

Enjoy.

Want to hide these adverts? Register an account for free!