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
Old 12-19-2006, 02:55 PM Form Data
Finney's Avatar
Skilled Talker

Posts: 91
Name: El Finney
Location: England, UK
Trades: 0
Hey, I heard it around before so I know it's possible.. I want to create a form where as the data is submitted it will be logged into a .txt file. The only thing is I can't find anyway on the internet to do this. Know how?

All help would be greatful, Thanks
Finney is offline
Reply With Quote
View Public Profile
 
 
Register now for full access!
Old 12-19-2006, 06:39 PM Re: Form Data
blackhawkpowers's Avatar
Ultra Talker

Posts: 313
Name: Dustin
Location: GA
Trades: 0
it's going to have to be done via php not really html so make sure your webserver has php installed. I'm going to assume you don't have any knowledge of php at this point I'll give you a simple example here but you'll have to modify it to fit your needs.

PHP Code:
<html>
<body>
<form action = "<? echo $_SERVER['PHP_SELF']; ?>" method="post">
<textarea cols="40" rows="5" name="msg"></textarea>
<input type="submit" value="submit" name="submit">
</form>
</body>
</html>
 
<? php
if (isset($_POST['submit'])) {
$msg$_POST['msg'];
    
$fp fopen("./file.txt");
    
fwrite($fp$msgstrlen($msg));
    
fclose($fp);
}
?>
 
hope this helps
__________________
A patch is a piece of software which replaces old bugs with new bugs.

Please login or register to view this content. Registration is FREE
|
Please login or register to view this content. Registration is FREE
|
Please login or register to view this content. Registration is FREE
blackhawkpowers is offline
Reply With Quote
View Public Profile Visit blackhawkpowers's homepage!
 
Old 12-20-2006, 09:20 AM Re: Form Data
Finney's Avatar
Skilled Talker

Posts: 91
Name: El Finney
Location: England, UK
Trades: 0
Mm, thanks!

Yeah it worked fine
Finney is offline
Reply With Quote
View Public Profile
 
Reply     « Reply to Form Data
 

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.57345 seconds with 12 queries