Note that there are some explanatory texts on larger screens.

plurals
  1. POPOST data to url in php
    primarykey
    data
    text
    <p>I am fetching data through url, but it does not show any record on <code>user_id</code>. The value <code>ali40</code> is present in the database, but records are not being shown</p> <p><a href="http://celeritas-solutions.com/emrapp/surveyDescription.php?user_id=ali40" rel="nofollow">http://celeritas-solutions.com/emrapp/surveyDescription.php?user_id=ali40</a></p> <pre><code>&lt;?php $linkID = mysql_connect($host, $user, $pass) or die("Could not connect to host."); </code></pre> <p>mysql_select_db($database, $linkID) or die("Could not find database."); </p> <pre><code> if (!function_exists('json_encode')) { function json_encode($a=false) { if (is_null($a)) return 'null'; if ($a === false) return 'false'; if ($a === true) return 'true'; if (is_scalar($a)) { if (is_float($a)) { // Always use "." for floats. return floatval(str_replace(",", ".", strval($a))); } if (is_string($a)) { static $jsonReplaces = array(array("\\", "/", "\n", "\t", "\r", "\b", "\f", '"'), array('\\\\', '\\/', '\\n', '\\t', '\\r', '\\b', '\\f', '\"')); return '"' . str_replace($jsonReplaces[0], $jsonReplaces[1], $a) . '"'; } else return $a; } $isList = true; for ($i = 0, reset($a); $i &lt; count($a); $i++, next($a)) { if (key($a) !== $i) { $isList = false; break; } } $result = array(); if ($isList) { foreach ($a as $v) $result[] = json_encode($v); return '[' . join(',', $result) . ']'; } else { foreach ($a as $k =&gt; $v) $result[] = json_encode($k).':'.json_encode($v); return '{' . join(',', $result) . '}'; } } } $user_id=$_GET['user_id']; echo($user_id); $query = mysql_query("SELECT s.*, u.user_id FROM survey_master AS s JOIN user_profile AS u on u.user_id = s.user_id where s.user_id='".$user_id."' "); $rows = array(); while($row = mysql_fetch_assoc($query)) { $rows[] = $row; } echo json_encode($rows); ?&gt; </code></pre>
    singulars
    1. This table or related slice is empty.
    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