PHP not creating file.
Posted on
16th Feb 2014 07:03 pm by
admin
Its supposed to create a .ini file in the /scriptfiles/users/ with the name they entered into the field then its supposed to create a password in the file in md5 encryption like this "password=32jknfdjkb324" like that but it doesn't create the file?, Heres my code.
Code: [Select]<center>
<form method=post action=register.php?action=register name=s>
<table>
<h1>Register on our SA-MP Server.</h1>
<tr><td>Username:</td><td><input type=text name=username></td></tr>
<tr><td>Password:</td><td><input type=password name=password></td></tr>
<tr><td colspan=2 align=center><input type=submit value=Register></td></tr>
</table>
</form>
</center>
<?php
if ($action == register) {
//cAccounts
//By Chris
//Register accounts and login on websites.
$ftp_host = "randomhostname"; //put the ip / hostname to your ftp here
$ftp_user = "randomuser"; //put your login here
$ftp_pass = "password"; //put your password here
$username = $_POST['username'];
$password = md5($_POST['password']);
$con = ftp_connect($ftp_host) or die("Error: Could not connect to FTP, Check FTP Settings.");
ftp_login($con, $ftp_user, $ftp_pass);
if (file_exists($username)) {
echo "This username already exists!, Please try another.";
} else {
$createfile = "scriptfilesusers$username.ini";
$wrightfile = fopen($createfile, 'w') or die("Error: Cannot create file.");
$wpass = "password=$password";
fwrite($wrightfile, $wpass);
fclose($wrightfile);
}
ftp_close($con);
}
?>
No comments posted yet
Your Answer:
Login to answer
143
52
Other forums
First root of a number
Hi,
I can't find any function in php to give me the first root of a number.
Is there any
MYSQL INSERT ID NOT WORKING
Code: $id = mysql_insert_id();
header("Location: ./?view=$id");
Why $id pulling blan
Get value from Select menu
Hi!
Have tried to find the solution on the web. Don't know if there is an easy one. A descrip
Calling strings from other php class
I have test1.php{
$string1;
$string2;
....
... //10 strings in this class <
IP Logger for Voting Script
Can anybody help me place an IP logger into my voting script?
I know that maybe it is not as secu
PHP & Java
Hello,
can PHP code be used inside java code?
Code: <SCRIPT LANGUAGE="Java
why isn't this PHP code working ???
it's suppose to find a name on the database.
<?php
$s = $_POST["lname&
Storing user data help?
Hey Guys,
I'm not use if this question is to broad but I can always give you more informatio
Need help/w Page: 1,2,3,4 function!
So I have this code im working on where it's ment to display seperate pages having 20 logs each
I
MySQL-PHP Query Results Help
Hello all. I'm hoping to be able to get some help in solving a problem with query/rowcount output. I