繁体   English   中英

PHP 如果isset() 不返回HTML 输入的值

[英]PHP If isset() Not Returning Value For HTML Input

我在使用isset()函数处理从数据库中提取的输入值的 PHP 表单时遇到问题。 当我使用下面的代码时,isset 函数没有向编辑客户端表单上的输入字段返回任何内容。 我需要一些帮助来解决这个令人头疼的问题。

编辑-client.php

<?php
require_once __DIR__ . '/inc/bootstrap.php';
require_once __DIR__ . '/inc/head.php';
require_once __DIR__ . '/inc/nav.php';

$client     = getClient(request()->get('client_id'));

$firstName  = $client['first_name'];
$lastName   = $client['last_name'];
$notes      = $client['notes'];
$buttonText = 'Update Client';
?>

<div class="container-fluid">
    <div class="row">
        <?php include __DIR__ . '/inc/sidebar-nav.php'; ?>

            <main role="main" class="col-md-9 ml-sm-auto mt-4 col-lg-10 px-4 main">
                <h1 class="h3 border-bottom pb-3 mb-4 text-primary">Edit Client</h1>

            <form method="post" action="/procedures/procedure-edit-client.php">

                <label for="first_name" class="text-muted">First Name</label>                    
                <input type="hidden" name="first_name" value="<?php if(isset($firstName)) echo $firstName; ?>">

                <label for="last_name" class="text-muted">Last Name</label>
                <input type="text" id="last_name" name="last_name" class="form-control" value="<?php if(isset($lastName)) echo $lastName; ?>" required>

                <label for="notes" class="text-muted">Notes</label>
                <textarea id="notes" name="notes" class="form-control" rows="10"><?php if(isset($firstName)) echo $firstName; ?></textarea>

                <button type="submit" class="btn btn-action btn-primary">
                    <?php
                        if(isset($buttonText)) echo $buttonText;
                        else echo 'Add New Client';
                    ?>
                </button>
            </form>
        </main>
    </div>
</div>

<?php require_once __DIR__ . '/inc/footer.php';

函数.php

function getClient($clientId) {
    global $db;

    try {
        $query = "SELECT * FROM client WHERE client_id = ?";

        $stmt = $db->prepare($query);
        $stmt->bindParam(1, $clientId);
        $stmt->execute();

        return $stmt->fetch(PDO::FETCH_ASSOC);
    } catch(\Exception $e) {
        throw $e;
    }
}

试试这个我假设你只得到一个结果所以返回第一个结果:

function getClient($clientId) {
    global $db;

    try {
        $query = "SELECT * FROM client WHERE client_id = ?";

        $stmt = $db->prepare($query);
        $stmt->bindParam(1, $clientId);
        $stmt->execute();
        $result = $stmt->fetchAll(); 

        return (!empty($result)) ? $result[0] : false;

    } catch(\Exception $e) {
        throw $e;
    }
}

之后再次检查您 var_dump($client) 以查看您的数据。 此外,当客户端为假时,它找不到客户端。 调整您的代码以检查其他 $client 仍然是空的。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM