0

我真的在想我必须在开头有一个格式错误的 php echo 语句,但 Dreamweaver 告诉我我没有语法错误。我的 process.php 永远不会被调用。

 $file = dirname(__FILE__) . '/customBook-index.php';
 $plugin_path = plugin_dir_path($file);
 $plugin_url = plugin_dir_url($file);

 <?php

     echo '<form method="post" action="'.$plugin_url.'process.php" />';

         echo'<select name="clients">';
        foreach($clientsArray as $client){
             echo'<option value="'.$client.'">'.$client.'</option>';
         }
     echo'</select>';
     echo '</form>';
    ?>
4

1 回答 1

0

您不必使用echo所有的 HTML。你也可以写:

<?php
    $file = dirname(__FILE__) . '/customBook-index.php';
    $plugin_path = plugin_dir_path($file);
    $plugin_url = plugin_dir_url($file);
?>
<form method="post" action="<?=$plugin_url?>process.php" />
    <select name="clients">
        <?php
            foreach($clientsArray as $client){
                ?>
                <option value="<?=$client?>"><?=$client?></option>
                <?php
            }
        ?>
    </select>
</form>

也许这对您来说更容易阅读和理解!?$plugin_url.'process.php您的 HTML中的输出是什么?我认为要么路径不匹配,要么您没有正确提交表单。

于 2012-10-29T23:35:03.817 回答