1

标题可能看起来很模糊,抱歉,我真的不知道如何表达我的问题。

我试图让一个 PHP 变量在按下按钮时被分配一个按钮类的值。有点像这样:

<input id="button-id" class="button-1" type="button" onclick="<?php $variable=class of button-id; // Assign the variable here ?>"

显然语法是错误的,因为我不知道该怎么做,或者是否可能。

我需要这个的原因是因为我正在做一个 MySQL 查询,它依赖于$variable这样的:

$query = "SELECT * FROM table WHERE name='{$variable}'";

由于查询的用途,这需要是这样的。

谢谢你的帮助。

4

2 回答 2

0

简而言之:你不能那样做。

您可能想要做的是使用隐藏字段通过提交表单将数据传递给 PHP 脚本。例如:

<form method="post" action="form.php">
  <input type="hidden" name="variable" value="button-1" />
  <input type="submit" class="button" />
</form>

您的form.php文件将如下所示:

<?php

$user = 'example';
$pass = 'example';

$dbh = new PDO('mysql:host=localhost;dbname=test', $user, $pass);

// use a prepared statement!
$stmt = $dbh->prepare("SELECT * FROM table WHERE name = ?");

// the user input is automatically quoted, so no risk of SQL injection
if ($stmt->execute(array($_POST['variable']))) {
  while ($row = $stmt->fetch()) {
    print_r($row);
  }
}

当然,与其在此处打印查询结果,您可能希望将它们存储在一个变量中以备后用。请注意,您还可以将脚本与表单合并到同一页面上。

于 2013-07-10T00:47:41.517 回答
-1

嗯,试试这个:我使用 Jquery 将按钮类传递给 Ajax 请求,该请求转到下面的 php 文件。

编辑:确保您正确解析和过滤数据以防止注入攻击。这只是表明您可以将 html 类传递给 PHP。

文件

<html>
    <head>
    <script type="text/javascript">
        // Assign your button an on click event using jquery
        $('#button-id').click(function(){ 
            //Store our current elements class value
            var buttonclass = $(this).attr("class");
            //Create an ajax request that goes to aphp file and will receive your class value
            $.ajax({
              url: 'ajaxfile.php?buttonclass='+buttonclass,
              success:function(data){
                alert(data);
              }
            });
        }); 
    </script>
    </head>
    <body>
    <input id="button-id" class="button-1" type="button"  />
    </body>
</html>

PHP文件

<?php

    $pdo = new PDO("mysql:dbname=newdbnaem;host=1.1.1.1:1111", "owner",  "passwordlulz");

    $buttonclass = $_GET['buttonclass'];
    $query = $pdo->prepare("SELECT * FROM table WHERE name = :name");
    $query->execute(array(':name' => $buttonclass));

?>
Success
<?php exit(0);
?>

希望这会有所帮助!

于 2013-07-10T00:39:46.397 回答