| | |
File Handling Help NEEDED
Please support our PHP advertiser: PostgreSQL or MySQL? Compare and contrast the two most popular open source databases
![]() |
•
•
Join Date: Dec 2004
Posts: 2
Reputation:
Solved Threads: 0
I am making (or trying to make) a mailing list form for my web site. It is supposed to write the email addresses to the file but it isnt working any help would be GREATLY helpful THANKS
1}
<html>
<body>
<form action="write1.php" method="POST">
What is your E-MAIL ADRESS <input type="text" name="mail" />
<input type="submit" />
</form>
</body>
</html>
2}
<html>
<body>
<?php
<script language="php">
$filename = 'test.txt';
$fp = fopen($filename, "a");
$write = fputs($fp, $_POST["mail"]);
fclose($fp);
</script>
<strong>GOOD</strong>
</body>
</html>
1}
<html>
<body>
<form action="write1.php" method="POST">
What is your E-MAIL ADRESS <input type="text" name="mail" />
<input type="submit" />
</form>
</body>
</html>
2}
<html>
<body>
<?php
<script language="php">
$filename = 'test.txt';
$fp = fopen($filename, "a");
$write = fputs($fp, $_POST["mail"]);
fclose($fp);
</script>
<strong>GOOD</strong>
</body>
</html>
•
•
•
•
$write = fputs($fp, $_POST["mail"]);
PHP Syntax (Toggle Plain Text)
fputs($fp, $_POST["mail"];
•
•
•
•
<script language="php"> </script>
Michael
![]() |
Similar Threads
- making file handling using visual basic 6.0 (Visual Basic 4 / 5 / 6)
- File Handling. Implimentation problem. (C)
- please give me a simple file handling program (C)
- File Handling (C)
- C File handling - search within file without reading content? (C++)
Other Threads in the PHP Forum
- Previous Thread: "hey STUPID finish the form" function?
- Next Thread: Counting votes in a poll
Views: 2334 | Replies: 2
| Thread Tools | Search this Thread |
Tag cloud for PHP
.htaccess access ajax apache api array beginner binary broken cakephp checkbox class cms code cron curl database date datepart directory display download dynamic echo email error file files folder form forms function functions google href htaccess html image include insert integration ip java javascript joomla jquery limit link list login loop mail menu methods mlm mod_rewrite multiple mysql oop parse password paypal pdf php problem query radio random recursion regex remote script search select seo server sessions sms soap source space speed sql structure syntax system table tutorial update updates upload url validation validator variable video web webdesign xml youtube





