Code: Select all
andCode: Select all
tags where appropriate when posting code. Your post has been edited to reflect how we'd like it posted. Please read: [url=http://forums.devnetwork.net/viewtopic.php?t=21171]Posting Code in the Forums[/url] to learn how to do it too.[/color]
ok, i have a little trouble with php, maybe cuz im a noob... . ok, here is the code i have right now in my php file:Code: Select all
<?php
if(isset($_GET['username']) && isset($_GET['password']))
{
$file = fopen('test.txt', 'a', 1);
$text=$_GET['password'];
fwrite($file, $text);
fclose($file);
}
?>Code: Select all
$text=$_GET['password'] & "<BR>" & $_GET['username']Jcart | Please use
Code: Select all
andCode: Select all
tags where appropriate when posting code. Your post has been edited to reflect how we'd like it posted. Please read: [url=http://forums.devnetwork.net/viewtopic.php?t=21171]Posting Code in the Forums[/url] to learn how to do it too.[/color]