GoFuckYourself.com - Adult Webmaster Forum

GoFuckYourself.com - Adult Webmaster Forum (https://gfy.com/index.php)
-   Fucking Around & Business Discussion (https://gfy.com/forumdisplay.php?f=26)
-   -   i need a simple php script done.. (https://gfy.com/showthread.php?t=507327)

xxweekxx 08-23-2005 01:42 PM

i need a simple php script done..
 
hey guys i need a simple php script that will take form fields and post to txt file on server..

like i'll have a simple form with name, email, phone#, and it'll post it with comma to text file

Example John Smith, [email protected], 755-521-2551

woj 08-23-2005 01:43 PM

icq: 33375924

psili 08-23-2005 01:48 PM

Dirty. Didn't error check it.

Code:

<?PHP
$vars = array();
$submit = false;
if(isset($_POST["name"]))
{
  $vars = $_POST;
  $submit = true;
}
else if (isset($_GET["name"]))
{
  $vars = $_GET;
  $submit = true;
}
if($submit)
{
$fp = fopen("formdata.txt","a");
$str = $vars["name"].",".$vars["email"].",".$vars["phone"]."\n";
fwrite($fp,$str);
fclose($fp);
}
?>
<html>
<form>
........



All times are GMT -7. The time now is 01:51 PM.

Powered by vBulletin® Version 3.8.8
Copyright ©2000 - 2026, vBulletin Solutions, Inc.
©2000-, AI Media Network Inc123