私は別のphpファイルからデータを取得しているp1.phpというphpファイルを持っています。これは、$ _GET経由でp1.phpでアクセスされるp2.phpです。$_GET のデータが変数 $totPrice に保存されます。p1.php にもそれ自体を参照するフォームがあり、一部の処理は MySql データベースで行われます。次のエラーが表示されます。
"Notice: Undefined index: totP in C:\xampp\htdocs\fi\p1.php on line 'where ever $totPrice appears'".
p1.php のコードは次のとおりです。
<?php
global $totPrice;
$totPrice = $_GET['totP'];
if(!isset($_COOKIE['username']))
{
if(isset($_POST['Submit']))
{
$dbc = mysqli_connect("localhost","root","","authserver");
$username = $_POST['name'];
$password = $_POST['password'];
$ccno = $_POST['ccno'];
if(!empty($username) && !empty($password) && !empty($ccno))
{
$query = "select * from authserver.fimembers where fName = '$username' AND password_finmem=SHA('$password') AND CreditCard = $ccno";
$result = mysqli_query($dbc,$query);
if(mysqli_num_rows($result) == 1 )
{
$dbc1 = mysqli_connect("localhost","root","","fininsti");
$query1 = "select * from fininsti.fimembers where fName = '$username' AND password_finmem=SHA('$password') AND CreditCard = $ccno";
$result1 = mysqli_query($dbc1,$query1);
$row = mysqli_fetch_array($result1,MYSQL_BOTH);
setcookie('username',$username,time()+60*60);
setcookie('ccno',$row[0],time()+60*60);
echo $totPrice.'<br />';
if($totPrice > $row[3])
if($_GET['totP'] > $row[3])
{
$status = array('stat' => 0 ); // 0 = Not sufficient funds
}
else
{
$status = array('stat' => 1 ); // 1 = Good To Go!
$newAmt = $row[3]-$totPrice;
$query = "update fininsti.fimembers set Credit = $newAmt where CreditCard = $ccno";
$result = mysqli_query($dbc1,$query);
}
$retMerUrl = "http://localhost/eTrans/site/confirm.php?".http_build_query($status);
setcookie('username',$username,time()-60*60);
setcookie('ccno',$row[0],time()-60*60);
mysqli_close($dbc1);
mysqli_close($dbc);
header('Location:'.$retMerUrl);
}
else
echo "Credentials don't match!";
}
else
{
echo "Sorry! Fields empty!";
}
setcookie('userId',$username,time()-60*60);
setcookie('ccno',$row[0],time()-60*60);
mysqli_close($dbc);
}
}
?>
質問に問題がある場合は、私に戻ってください。