ทำไม download Code ไม่ได้ สมัครสมาชิกแล้ว แต่ Download ไม่ได้ครับ
ไปที่เมนู downloads ครับ
จากนั้นก็ใส่ user และ password
Date :
29 Sep 2546 01:37:43
By :
webmaster
ก็ยังไม่ได้อีกครับ พอใส่ User Password แล้ว ระบบจะเช็ค User และ Password ว่าถูกหรือไม่ ก็ถูกต้องทุกอย่าง แต่ก็ไม่ได้ครับ รบกวนขอ script ทุกตัวที่อยู่ใน Download ได้ไหมครับ โดย zip แนบมากับ mail ครับ ขอบคุณครับ จะเอาไว้ศึกษาครับ
Date :
29 Sep 2546 13:23:18
By :
tom
Script บางตัว อาจจะ downloads ไม่ได้ครับ
อาจจะเกิดจากการ link ที่ผิดพลาด
สำหรับเรื่องขอ Script คงไม่ได้หรอกครับ
เพราะมีขนาดถึง 10-20 Mb ครับ
Date :
29 Sep 2546 13:34:45
By :
webmaster
มันฟ้อง
Warning: mysql_connect() [function.mysql-connect]: Access denied for user 'root'@'localhost' (using password: NO) in C:\AppServ\www\ProjectIT\site_flash\register.php on line 236
Access denied for user 'root'@'localhost' (using password: NO)
นี้โค้ดน่ะค่ะ
ช่วยดูทีโค้ดสมัครสมาชิกอ่าค่ะ มันสมัครไม่ได้อ่าค่ะ
<?php
//This function will display the registration form
function register_form(){
echo "ระบบบริการสมาชิกเพื่อดาวน์โหลดไฟล์ :: สมัครสมาชิก";
$date = date('D, M, Y');
echo "<form action='?act=register' method='post'>"
."name:<input type='text' name='name'size='30'><br>"
."Username: <input type='text' name='username' size='30'><br>"
."Password: <input type='password' name='password' size='30'><br>"
."Address: <input type='address' name='address' size='30'><br>"
."tel: <input type='tel' name='tel' size='30'><br>"
."Email: <input type='text' name='email' size='30'><br>"
."<input type='hidden' name='date' value='$date'>"
."<input type='submit' value='Register'>"
."</form>";
}
//This function will register users data
function register(){
//Connecting to database
$connect = mysql_connect("127.0.0.1", "root", "");
if(!$connect){
die(mysql_error());
}
//Selecting database
$select_db = mysql_select_db("userlogindownload", $connect);
if(!$select_db){
die(mysql_error());
}
//Collecting info
$username = $_REQUEST['username'];
$password = $_REQUEST['password'];
$pass_conf = $_REQUEST['password_conf'];
$email = $_REQUEST['email'];
$date = $_REQUEST['date'];
//Here we will check do we have all inputs filled
if(empty($username)){
die("Please enter your username!<br>");
}
if(empty($password)){
die("Please enter your password!<br>");
}
if(empty($pass_conf)){
die("Please confirm your password!<br>");
}
if(empty($email)){
die("Please enter your email!");
}
//Let's check if this username is already in use
$user_check = mysql_query("SELECT username FROM users WHERE username='$username'");
$do_user_check = mysql_num_rows($user_check);
//Now if email is already in use
$email_check = mysql_query("SELECT email FROM users WHERE email='$email'");
$do_email_check = mysql_num_rows($email_check);
//Now display errors
if($do_user_check > 0){
die("Username is already in use!<br>");
}
if($do_email_check > 0){
die("Email is already in use!");
}
//Now let's check does passwords match
if($password != $pass_conf){
die("Passwords don't match!");
}
//If everything is okay let's register this user
$insert = mysql_query("INSERT INTO users (username, password, email) VALUES ('$username', '$password', '$email')");
if(!$insert){
die("There's little problem: ".mysql_error());
}
echo $username.", you are now registered. Thank you!<br><a href=login.php>Login</a> | <a href=index.php>Index</a>";
}
switch($act){
default;
register_form();
break;
case "register";
register();
break;
}
?>
Date :
2010-01-25 15:52:55
By :
gift
ตรวจสอบ User & Password ของ MySQL ครับ
Date :
2010-01-25 21:44:40
By :
webmaster
Load balance : Server 04