Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

HTML Forum


You are currently viewing our HTML Forum as a guest. Please register to participate.
Login



Post a Project »

Find a Professional HTML Freelancer!

Find a Freelancer to help you with your HTML projects

FREE Outsourcing eBook!

Reply
Need help placing chat/messenger box on web page
Old 09-07-2009, 04:38 PM Need help placing chat/messenger box on web page
Junior Talker

Posts: 2
Trades: 0
Hi, I'm not a programmer, but I know how to at least cut and paste html code. I need to place a comment box on a web page where visitors can post a question and I will receive it immediately, kind of like what happens during a live webinar, except the visitor will be viewing a recorded video on the page and then submitting questions in this "chat" box immediately below the video. I know there are paid services out there like LiveChat that cost money, but I don't need a two-way chat. I just need to receive their questions and then respond back via a phone conference number.

Thanks for your help.
jacobson is offline
Reply With Quote
View Public Profile
 
 
Register now for full access!
Old 09-07-2009, 04:58 PM Re: Need help placing chat/messenger box on web page
Bertjeuh's Avatar
Average Talker

Posts: 25
Name: Bert Van Leemput
Trades: 0
Actually simple mail system ?

PHP Code:
<?php
if($_POST){
    
$message $_POST['text'];
    
$to 'youremail@domain.com';
    
$subject 'SUBJECT';
    
mail($to$subject$message);
}
else{
?>
<html>
<head>
<title>Title</title>
</head>
<body>
<form action="" method="post">
<textarea cols="50" rows="3" name="text"></textarea><br>
<input type="submit" value="send">
</form>
</body>
</html>
<?php
}
?>
__________________
There Are Only 10 Types of People in the World: Those Who Understand Binary, and Those Who Don't.
Bertjeuh is offline
Reply With Quote
View Public Profile
 
Old 09-07-2009, 05:13 PM Re: Need help placing chat/messenger box on web page
Junior Talker

Posts: 2
Trades: 0
Thanks. Will this php code work on a Wordpress blog or a website with html?
jacobson is offline
Reply With Quote
View Public Profile
 
Old 09-08-2009, 10:11 AM Re: Need help placing chat/messenger box on web page
Bertjeuh's Avatar
Average Talker

Posts: 25
Name: Bert Van Leemput
Trades: 0
Save it as a .php and upload it. But your site has to support php.
__________________
There Are Only 10 Types of People in the World: Those Who Understand Binary, and Those Who Don't.
Bertjeuh is offline
Reply With Quote
View Public Profile
 
Reply     « Reply to Need help placing chat/messenger box on web page
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 0.31356 seconds with 12 queries