Note that there are some explanatory texts on larger screens.

plurals
  1. POandroid form data sending to mysql database
    primarykey
    data
    text
    <p>I have an android layout with a spinner, 2 edittexts and a multiselection list. I want to send the data from these controls to a mysql database. It's like a profile kind of a thing, once it is filled and sent I want it to fetch the data inserted from mysql database and show it in a profile like view (like in textviews) instead of showing me the form again.</p> <pre><code>&lt;?xml version="1.0" encoding="UTF-8"?&gt; &lt;LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:padding="10dip" android:layout_width="fill_parent" android:layout_height="fill_parent" android:background="@drawable/chipperstyle_bg" android:id="@+id/layout"&gt; &lt;TextView android:layout_width="fill_parent" android:layout_height="wrap_content" android:textColor="#848585" android:id="@+id/chipper_type" android:text="[ CHIPPER TYPE ]" android:layout_marginTop="8dip"/&gt; &lt;LinearLayout android:layout_width="fill_parent" android:id="@+id/linearLayout1" android:layout_height="wrap_content" android:layout_marginTop="-10dip" android:layout_marginBottom="10dip"&gt; &lt;Spinner android:id="@+id/spinner" android:prompt="@string/select_chippertype" android:layout_height="wrap_content" android:layout_weight="0" android:layout_width="fill_parent" android:layout_marginTop="10dip"&gt;&lt;/Spinner&gt; &lt;/LinearLayout&gt; &lt;TextView android:layout_width="fill_parent" android:layout_height="wrap_content" android:textColor="#848585" android:text="[ INTERESTS ]" android:layout_marginTop="-10dip" android:layout_marginBottom="5dip"/&gt; &lt;EditText android:layout_width="fill_parent" android:clickable="true" android:id="@+id/interest_et" android:layout_height="wrap_content" android:paddingLeft="10dip" android:textColor="#848585" android:password="false" android:scrollbarAlwaysDrawVerticalTrack="true" android:scrollbarStyle="insideOverlay" android:scrollbarSize="2dip" android:scrollbars="vertical" android:singleLine="true" android:scrollbarFadeDuration="2" android:layout_marginTop="0dip" android:editable="false"/&gt; &lt;TextView android:layout_width="fill_parent" android:layout_height="wrap_content" android:textColor="#848585" android:text="[ TAG LINE ]" android:layout_marginBottom="10dip" android:layout_marginTop="5dip"/&gt; &lt;EditText android:layout_width="fill_parent" android:layout_height="wrap_content" android:clickable="true" android:id="@+id/tagline_et" android:paddingLeft="10dip" android:textColor="#848585" android:scrollbarAlwaysDrawVerticalTrack="true" android:password="false" android:singleLine="true" android:layout_marginTop="0dip"/&gt; &lt;TextView android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_marginBottom="10dip" android:textColor="#848585" android:text="[ COMPATIBLE CHIPPER(S) ]" android:layout_marginTop="5dip"/&gt; &lt;Spinner android:prompt="@string/select_chippertype" android:layout_width="fill_parent" android:layout_height="wrap_content" android:id="@+id/Spinner01" android:layout_marginBottom="-5dip" android:layout_marginTop="0dip"&gt;&lt;/Spinner&gt; &lt;LinearLayout android:orientation="horizontal" android:layout_width="fill_parent" android:layout_height="wrap_content"&gt; &lt;Button android:id="@+id/cancel_signUp" android:layout_width="wrap_content" android:layout_height="wrap_content" android:background="@drawable/cancel2"/&gt; &lt;Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/signUp" android:layout_marginLeft="150dip" android:background="@drawable/go_buttons1"&gt;&lt;/Button&gt; &lt;/LinearLayout&gt; &lt;ImageView android:scaleType="center" android:src="@drawable/plain" android:id="@+id/imageView1" android:layout_marginLeft="236dip" android:layout_height="70dip" android:layout_width="65dip" android:layout_marginBottom="0dip" android:layout_marginTop="-14dip"&gt;&lt;/ImageView&gt; &lt;/LinearLayout&gt; </code></pre>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload