我有一个如下所示的课程列表:
当然
我需要在我的页面中显示它然后它应该重定向到保存值(当然名称)的页面以供将来使用。
这是我到目前为止所做的:
<div id="join_courses" class="">
<form action="" method="post">
<label>Join a course:<br></label>
<input placeholder="select a course" list="courses" name="courses">
<datalist id="courses">
<option value="
<?php
include('student_register.php');//include php code that gets the tables (courses)
while($table = mysqli_fetch_array($result)) {
echo $student_courses[0];
}
?>
这给了我输入列表表单,但它显示了我在同一个字段中的所有“课程”。 (不在列表中)。
有关如何处理此事的任何建议?
答案 0 :(得分:0)
尝试使用适当的锚点
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<WebView
android:id="@+id/webView1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/rl02"
android:animateLayoutChanges="true"
android:fitsSystemWindows="false"
android:scrollbarAlwaysDrawVerticalTrack="false"
android:scrollbars="none" />
<RelativeLayout
android:id="@+id/rl02"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentRight="true"
android:background="#000000"
android:gravity="center" >
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#000000"
android:gravity="center"
android:minHeight="30dp"
android:onClick="onClick"
android:singleLine="true"
android:text="STOP"
android:textAllCaps="true"
android:textColor="#FFFFFF"
android:textSize="12dp"
android:textStyle="bold" />
<SeekBar
android:id="@+id/SeekBarTestPlay"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_toRightOf="@+id/button1"
android:background="#000000"
android:fadingEdge="horizontal"
android:indeterminate="false"
android:minHeight="10dp"
android:paddingLeft="20dp"
android:paddingRight="20dp"
android:scrollbarStyle="outsideOverlay" />
</RelativeLayout>
</RelativeLayout>