Results 1 to 6 of 6
  1. #1
    aruna is offline Freshman
    Join Date
    Mar 2011
    Posts
    10
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Feedback Score
    0

    Default what is the use of mysql_fetch_array?

    what is the use of mysql_fetch_array?

  2. #2
    susen is offline Freshman
    Join Date
    Apr 2010
    Posts
    40
    Thanks
    0
    Thanked 1 Time in 1 Post
    Feedback Score
    0

    Default

    mysql_fetch_array is a PHP function to retrieve row of data as an array from mysql database.
    Example
    PHP Code:
    $query="SELECT* FROM user WHERE id=5";
    $result mysql_query($query);
    $row = @mysql_fetch_array($resultMYSQL_ASSOC);
    //$row is an associative array holding user data where user id = 5 

  3. #3
    jassmee is offline Sophomore
    Join Date
    Mar 2012
    Posts
    144
    Thanks
    0
    Thanked 1 Time in 1 Post
    Feedback Score
    0

    Default what is the use of mysql_fetch_array?

    mysql_fetch_array is mysql query .it is used to fetch the record from tha database. with help of this query you may run the data...

  4. #4
    sailcorp's Avatar
    sailcorp is offline Sophomore
    Join Date
    Apr 2012
    Location
    Australia
    Posts
    55
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Feedback Score
    0

    Default

    Example mysql_fetch_array() with MYSQL_NUM
    <?php
    mysql_connect
    ("localhost", "mysql_user", "mysql_password") or
    die(
    "Could not connect: " . mysql_error());
    mysql_select_db("mydb");

    $result = mysql_query("SELECT id, name FROM mytable");

    while (
    $row = mysql_fetch_array($result, MYSQL_NUM)) {
    printf("ID: %s Name: %s", $row[0], $row[1]);
    }

    mysql_free_result($result);
    ?>



  5. #5
    sandy712 is offline Freshman
    Join Date
    Aug 2012
    Posts
    12
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Feedback Score
    0

    Default

    mysql_fetch_array is a PHP function to retrieve row of data as an array from mysql database.

  6. #6
    RituVerma's Avatar
    RituVerma is offline Banned
    Join Date
    Aug 2012
    Location
    Benglore,India
    Posts
    87
    Thanks
    5
    Thanked 0 Times in 0 Posts
    Feedback Score
    0

    Default

    it retrieve rows one by one from the result set.......

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Partners: BOSTON WEB DEVELOPER, LLC   |   WEBCOSMO CLASSIFIEDS