Note that there are some explanatory texts on larger screens.

plurals
  1. PONot Passing my edit text value in android to PHP variable
    text
    copied!<p>I'm able to connect into my MySQL database but the problem is. My android does not passing the edit text value to PHP with this codes.</p> <pre><code>public class MySQL extends Activity { EditText inputName; private static String url_create_product = "http://atlantis-us.com/phpFile.php?"; JSONParser jsonParser = new JSONParser(); @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_my_sql); inputName = (EditText) findViewById(R.id.txt1); ((Button) findViewById(R.id.btnsend)).setOnClickListener(new View.OnClickListener() { public void onClick(View v) { // TODO Auto-generated method stub new CreateNewProduct().execute(); } }); } class CreateNewProduct extends AsyncTask&lt;String, String, String&gt; { @Override protected String doInBackground(String... arg0) { // TODO Auto-generated method stub String name = inputName.getText().toString(); List&lt;NameValuePair&gt; params = new ArrayList&lt;NameValuePair&gt;(); params.add(new BasicNameValuePair("name", name)); JSONObject json = jsonParser.makeHttpRequest(url_create_product, "POST", params); return null; } } } this is my PHP codes &lt;?php $DB_HostName = "localhost"; $DB_Name = "_atlantisdb"; $DB_User = "atlantis_frux"; $DB_Pass = "frux2012"; $DB_Table = "testDB"; if (isset ($_GET["name"])) $name = $_GET["name"]; else $name = "Ghalia"; $con = mysql_connect($DB_HostName,$DB_User,$DB_Pass) or die(mysql_error()); mysql_select_db($DB_Name,$con) or die(mysql_error()); $sql = "insert into $DB_Table (name) values('$name');"; $res = mysql_query($sql,$con) or die(mysql_error()); mysql_close($con); if ($res) { echo "success"; }else{ echo "faild"; }// end else ?&gt; </code></pre> <p>can anyone trace what's worng with my codes? thanks in advance.</p>
 

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