Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question
I don't understand your question. It seems like the SQL query is only run once? What do you want the code to do? – Khôi Sep 21 '12 at 12:04
@Khôi after retriving the course with CourseID":"7 is duplicated tow times why that happend as you see, i want to code to retrive all the course frome mysql and then i will add it array to pass it to andriod via json – user1688325 Sep 21 '12 at 12:05

closed as too localized by DCoder, hakre, Mihai Iorga, j0k, Jason Sturges Sep 21 '12 at 20:18

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

3 Answers

It is not duplicating the first row twice.

If you notice, the array response is initiated outside the while loop.

In the first iteration of the loop, the first row is stored in it.

In the second iteration of the loop, the second row of the database is appended to the first row and hence you get the first row repetition. I would suggest you to empty the array response after every iteration of the for loop to achieve the desired result.

Use unset($response); at then end of the while loop.

I hope that helped.

share|improve this answer
Anurag Ramdasan i try to do it and it is not help it bring an erro – user1688325 Sep 21 '12 at 12:15
what error does it give? – Anurag Ramdasan Sep 21 '12 at 12:16

Repeating because you're printing the JSON on every iteration. If you want valid JSON you need to build the array of your courses first and then display it.

In your view_all.php

$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));
share|improve this answer

You will have to check your brackets: Take the print statement outside of your while loop.

 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));
}
share|improve this answer
thanks it work know :) – user1688325 Sep 21 '12 at 12:21
Thanks! Then please accept one answer and upvote the others. This will help you and Stackoverflow's community. – Khôi Sep 21 '12 at 12:23

Not the answer you're looking for? Browse other questions tagged or ask your own question.