چگونه می توانم یک متغییر php را به یک فایل دیگر انتقال دهم؟
https://lamtakam.com/qanda/443/چگونه-می-توانم-یک-متغییر-php-را-به-یک-فایل-دیگر-انتقال-دهم؟ 2یک فایل php دارم به اسم login.php
که توی html توسط js صدا زده میشه، اما المنت ها، متغییرها رو به صفحه php دیگه (به اسم ucheck_com.php
، صفحه ای که روی اون متغییرها کار می کنه) ارسال نمی کنن. راه دیگه ای وجود داره که بتونم این کار رو انجام بدم؟
// sample.html
<!DOCTYPE html>
<html>
<head>
<title></title>
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
</head>
<body>
<div id="displaylogin"></div>
</body>
</html>
<script>
$(document).ready(function() {
$(function(){
$("#displaylogin").load("user/login.php");
});
});
</script>
این صفحات php:
// login.php
<?php
require_once 'userphp/connect.php';
require_once 'userphp/ucheck_com.php';
require_once 'userphp/errors.php';
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" lang="en-US">
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<title></title>
</head>
<body>
<div class="page-container">
<form action="" method="post" class="main">
<label>Alias</label>
<input type="text" name="alias" value="">
<label>Password</label>
<input type="password" name="password">
<br />
<input type="submit" name="login_user" id="login_user" value="Login">
</form>
</div>
</body>
</html>
// -----------------------------------------------------------------------------------------------------
// ucheck_com.php
if (isset($_POST['login_user'])) {
$alias = mysqli_real_escape_string($connect, $_POST['alias']);
$password = mysqli_real_escape_string($connect, $_POST['password']);
$_SESSION['alias'] = $alias;
$_SESSION['password'] = $password;
if (empty($_SESSION['alias'])) {
array_push($errors, "Alias is required");
}
if (empty($_SESSION['password'])) {
array_push($errors, "Password is required");
}
if(count($errors) == 0) {
$result = mysqli_query($connect, "SELECT * FROM `user` WHERE `alias` = '$alias' AND `password` = '$password'");
foreach ($result as $item) {
$_SESSION['email_add'] = $item['email_add'];
$_SESSION['user_id'] = $item['user_id'];
}
$row_cnt = mysqli_num_rows($result);
if($row_cnt == 1) {
header("location: ../index.html");
} else {
array_push($errors, "Wrong alias/password combination");
}
}
}
چرا كسي جواب منو نميده؟؟ ــ ساناز رضایی در 6 سال قبل | |||
1 | در فایل login.php، بخش action را با نام فایل ucheck_com.php پرکنید و تست کنید. ــ نورالله رضایی در 6 سال قبل | ||
@نورالله.رضایی درست شدددددددد مرسسییییی . توی ویدیو اکشن نزاشته بود ــ ساناز رضایی در 6 سال قبل |