I am trying to retrieve all courses from MySQL using PHP then connect it with andriod via JSON
but if when i write in the url localhost/view_all.php it displays
{"course":[{"CourseID":"7","Code":"44","Name":"dfdgfgf","OfficeHours":"gfg","CreditHours":"4","Description":"fgfgf","MaxAbsenceDays":"5","ExamsDates":"2012-09-03"}],"success":1}{"course":[{"CourseID":"7","Code":"44","Name":"dfdgfgf","OfficeHours":"gfg","CreditHours":"4","Description":"fgfgf","MaxAbsenceDays":"5","ExamsDates":"2012-09-03"},{"CourseID":"8","Code":"55","Name":"dfdgfgfhghg","OfficeHours":"5","CreditHours":"5","Description":"55555555555","MaxAbsenceDays":"6","ExamsDates":"2012-09-03"}],"success":1}
so as you see it replicate the first row to time one with success = 1
and second with no success
this is my code view_all.php
/*
* Following code will list all the course
*/
// array for JSON response
$response = array();
// include db connect class
require_once __DIR__ . '/db_connect.php';
// connecting to db
$db = new DB_CONNECT();
// get all courses from course table
$result = mysql_query("SELECT *FROM course") or die(mysql_error());
// check for empty result
if (mysql_num_rows($result) > 0)
{
// looping through all results
// products node
$response["course"] = array();
while ($row = mysql_fetch_array($result))
{
// temp user array
$course = array();
$course["CourseID"] = $row["CourseID"];
$course["Code"] = $row["Code"];
$course["Name"] = $row["Name"];
$course["OfficeHours"] = $row["OfficeHours"];
$course["CreditHours"] = $row["CreditHours"];
$course["Description"] =$row["Description"];
$course["MaxAbsenceDays"]= $row["MaxAbsenceDays"];
$course["ExamsDates"] = $row["ExamsDates"];
// push single product into final response array
array_push($response["course"], $course);
// success
$response["success"] = 1;
// echoing JSON response
print (json_encode($response));
}
}
else {
// no products found
$response["success"] = 0;
$response["message"] = "No products found";
// echo no users JSON
print (json_encode($response));
}
?>
for connection db_connect.php
<?php
/**
* A class file to connect to database
*/
class DB_CONNECT {
// constructor
function __construct() {
// connecting to database
$this->connect();
}
// destructor
function __destruct() {
// closing db connection
$this->close();
}
/**
* Function to connect with database
*/
function connect() {
// import database connection variables
require_once __DIR__ . '/db_config.php';
// Connecting to mysql database
$con = mysql_connect(DB_SERVER, DB_USER, DB_PASSWORD) or die(mysql_error());
// Selecing database
$db = mysql_select_db(DB_DATABASE) or die(mysql_error()) or die(mysql_error());
// returing connection cursor
return $con;
}
/**
* Function to close db connection
*/
function close() {
// closing db connection
mysql_close();
}
}
?>
and db_config.php
<?php
/*
* All database connection variables
*/
define('DB_USER', "root"); // db user
define('DB_PASSWORD', ""); // db password (mention your db password here)
define('DB_DATABASE', "sms"); // database name
define('DB_SERVER', "localhost"); // db server
?>
and thanks