How to get single value from database with php

Noshairwan Farooq

I am trying to get a single value from database and store it in a variable Here is the structure of my Database

mysql_connect("localhost","root","") or die(mysql_error());;
mysql_select_db("test") or die(mysql_error());
$result = mysql_query('SELECT * FROM names WHERE name = noshair');
while($row = mysql_fetch_array($result));
{
    echo $row['course'] . "<p>";    
}

When I use the above code it prints all the courses against my name from data base but I want a specific course name to be selected, like there are 5 courses against my name and i just want all of then separately to be saved in separate variable.

Isaac Pak

Give this query a try:

SELECT DISTINCT name, GROUP_CONCAT(DISTINCT course ORDER BY course) AS courses;
FROM names
WHERE name = noshair

and change your echo statement to this:

echo $row['courses'] . "<p>";

This should output a list of your course like this -> 'java, c#, php, maths' which you could then put in a variable.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How to get single value from database with php

From Dev

How to echo a single value from database with PHP

From Dev

How to Get a single Value from php loop

From Dev

How to get Single Value From Database through Entity Framework

From Dev

get a single value from the database using laravel

From Dev

How to get value of password from MySQL database using PHP

From Dev

How to return a single value from a database?

From Dev

Php Get single value from array

From Dev

PHP get single value from MySQL with variable

From Dev

PHP: Get single value from complex array

From Dev

How to get a single child from firebase database

From Dev

How to get a single child from firebase database

From Dev

Cannot get the value from database in PHP

From Dev

Get value from cookies in database Codeigniter PHP

From Dev

how to get single value from array in codeigniter

From Dev

Mysql: fetch value from database and php array in single query

From Dev

Mysql: fetch value from database and php array in single query

From Dev

How to get a result from a single array PHP

From Dev

How to get single value from dict with single entry?

From Dev

how can i get single value at next page from multiple values in another page using php

From Dev

How to get the last value from the database

From Dev

How to get the last value from the database

From Dev

How to get option value from database?

From Dev

How to pass value from database to popup in php?

From Dev

How to retrieve checkbox value from database in PHP

From Dev

How to pass value from database to popup in php?

From Dev

How to retrieve a single value from the database using Dapper

From Dev

How to remove a single quote from a value while inserting in SQL database

From Dev

How to retrieve a single value from the database using Dapper

Related Related

  1. 1

    How to get single value from database with php

  2. 2

    How to echo a single value from database with PHP

  3. 3

    How to Get a single Value from php loop

  4. 4

    How to get Single Value From Database through Entity Framework

  5. 5

    get a single value from the database using laravel

  6. 6

    How to get value of password from MySQL database using PHP

  7. 7

    How to return a single value from a database?

  8. 8

    Php Get single value from array

  9. 9

    PHP get single value from MySQL with variable

  10. 10

    PHP: Get single value from complex array

  11. 11

    How to get a single child from firebase database

  12. 12

    How to get a single child from firebase database

  13. 13

    Cannot get the value from database in PHP

  14. 14

    Get value from cookies in database Codeigniter PHP

  15. 15

    how to get single value from array in codeigniter

  16. 16

    Mysql: fetch value from database and php array in single query

  17. 17

    Mysql: fetch value from database and php array in single query

  18. 18

    How to get a result from a single array PHP

  19. 19

    How to get single value from dict with single entry?

  20. 20

    how can i get single value at next page from multiple values in another page using php

  21. 21

    How to get the last value from the database

  22. 22

    How to get the last value from the database

  23. 23

    How to get option value from database?

  24. 24

    How to pass value from database to popup in php?

  25. 25

    How to retrieve checkbox value from database in PHP

  26. 26

    How to pass value from database to popup in php?

  27. 27

    How to retrieve a single value from the database using Dapper

  28. 28

    How to remove a single quote from a value while inserting in SQL database

  29. 29

    How to retrieve a single value from the database using Dapper

HotTag

Archive