这听起来真的很愚蠢,但我无法弄清楚为什么我会收到这个错误.
我在我的html表单中创建了一个名为"query_age"的选择框:
<form method="get" action="user_list.php">
<select name="query_age">
<option value="">Doesn't matter</option>
<option value="between 18 and 30">18 - 30</option>
<option value="between 31 and 40">31 - 40</option>
<option value="between 41 and 50">41 - 50</option>
<option value="between 51 and 60">51 - 60</option>
<option value="between 61 and 70">61 - 70</option>
<option value="between 71 and 80">71 - 80</option>
<option value="between 81 and 90">81 - 90</option>
<option value="> 90">Older than 90</option>
</select>
Run Code Online (Sandbox Code Playgroud)
在相应的PHP表单中,我有:
$query_age = $_GET['query_age'];
Run Code Online (Sandbox Code Playgroud)
当我运行页面时,我收到此错误:
注意:未定义的索引:第19行的index.php中的query_age
我不明白为什么会这样,我很想知道如何让它消失.
当我尝试在AVD管理器中创建AVD时,我无法使"确定"按钮变为灰色.
我的问题听起来类似于AVD Manager - 无法创建Android虚拟设备,但遗憾的是解决方案不一样,或者它已经修复了.我检查了这里提供的答案,我已经安装了ARM EABI v7a System Image.
从我到目前为止所读到的,我怀疑问题是我的CPU/ABI下拉列表是空的.
不幸的是,我还没弄清楚如何解决这个问题.
更新:我发现我可以通过选择其中一种预设电话类型来填写CPU/ABI下拉列表.