Jump to content

Php Gönderin


ahmet0011

Recommended Posts

PHP Code:

<?php

$name = $_REQUEST['name'];

$vorname = $_REQUEST['vorname'];

$from = $_REQUEST['from'];

$drive = $_REQUEST['drive'];

$filename = "log.txt";

$openfile = fopen($filename, 'a') or die("ERROR");

$data = "Name: $name | VorName: $vorname | From: $from | Drive: $drive\n";

fwrite($openfile, $data);

fclose($openfile);

?>

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

  • Recently Browsing   0 members

    No registered users viewing this page.

×
×
  • Create New...