我有两种形式。在第二页中,移动设备没有显示。
第二种形式的 echo $_r['mobile'];
没有显示任何内容。
我添加每一页:
<?php session_start();?>
<?php include('include/config.php');?>
第1页/页:sign.php
<form class="ff" action="signc.php" method="POST">
<a>Enter Your Mobile No.</a>
<input type="text" id="inp" name="mobile" required>
</br></br>
<input type="submit" id="btn" value="continue">
</form>
signc.php
$sql = mysqli_query($connection, "INSERT INTO `mobile_message` SET `mobile` = '$mobile'");
if($sql){
$cid=$sql['mobile'];
$_SESSION['cid']=$cid;
$_SESSION['s']= "OTP sent to your mobile.";
header('Location:sign2.php');
} else{
$_SESSION['e']= "Could not able to execute. ";
header('Location:sign.php');
}
第二张表格/页:sign2.php
<form class="ff" action="sign2c.php" method="POST">
<a class="ase" >Enter Your Mobile No.</a>
<?php
$cid=$_SESSION['cid'];
$_q=mysqli_query($connection, "select * from mobile_message where mobile='$cid'");
$_r=mysqli_fetch_array($_q);
echo $_r['mobile'];
?>
</br></br>
<a class="ase" >Enter Password</a>
<input type="text" id="inp" name="otp" required>
</br>
<input type="submit" id="btn" value="continue">
</form>
答案 0 :(得分:1)
在$cid=$_POST['mobile'];
$cid=$sql['mobile'];
行signc.php
$sql = mysqli_query($connection, "INSERT INTO `mobile_message` SET `mobile` = '$mobile'");
if($sql){
$cid=$_POST['mobile']; # write instead $cid=$sql['mobile'];
$_SESSION['cid']=$cid;
$_SESSION['s']= "OTP sent to your mobile.";
header('Location:sign2.php');
} else{
$_SESSION['e']= "Could not able to execute. ";
header('Location:sign.php');
}