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
Solution Manager BPR
Does the SolMan-BPR-ARIS-Integration (http://www.ids-scheer.com/en/ARIS/ARIS_Platform/ARIS_Business_
Variable Clash
In the past I've had variables clash. For example:
Code: <?php
$c = 5;
$ca
Legal Issues for SAP ERP o ERP in general
Hi experts,
Can someone please help me finding some documentation about legal issues tha
How to extract/download content from HTTPS page?
Hello to all the Members of this forum, Im Shoiab, A novice programmer in php.. for my first job I h
need to add "sizes" to shopping cart
Hey guys, I am trying to figure out a way to add a "size" selector on to this bit of code.
Am I setting up my sites oldschool?
Ok,
When I create a site I open a basic template that I have created that consists of a css f
Session
I am having a little trouble with a session. Not sure if it is my browser or what. I know I do not
the problem with str_replace
$str="hahahahahahahahahahahahahaha";
$nn=1;
$str=str_replace('ha','MyGod',$str,$nn);
Need help with unexpected T-STRING error
I'm a newbie and I'm still learning PHP. However this error has me stumped. I've googled, searched t
email form (cannot find the problem)
Hello there. I've been having trouble with an email form. Can't find the problem really. I've tested