PHP/MySQL - Get multiple fields from one entry in a table

user1009573

I thought I could find loads of examples on how to do this but nothing I find tells me how to get the values in PHP.

Say I have this code:

$query = "SELECT name, age FROM people WHERE id = 2";
$result = mysql_query($query);

How do I get the data from $result?

Pseudo code:

$name = $result['name'];
$age = $result['age'];
Santiag00

Did you try this?

$query = "SELECT name, age FROM people WHERE id = 2";    
$result = mysql_query($query);
$row = mysql_fetch_assoc($result);
echo $row['name'];
echo $row['age'];

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

php / mysql to query one table with multiple identical fields and create one unique entry for each field in a second table

From Dev

Get one css file from webpack multiple entry points

From Dev

Joining multiple fields to one in another table

From Dev

SQL - Where In one table not the other (Multiple Fields)

From Dev

How to get data in gridview from one table but multiple select statements

From Dev

Get values from multiple sql server table by one query

From Dev

How to get records from one table which are not in another table's fields (3)

From Dev

Get Value From Double Entry Table

From Dev

Validate fields from one table to another in MySQL

From Dev

Select users from table that have at least one entry in diffierent table

From Dev

Multiple values in one entry

From Dev

How to get just the fields from a table in MySQL?

From Dev

Get the values of two fields from a table JOIN

From Dev

How to get just the fields from a table in MySQL?

From Dev

Datatables AJAX Get Fields from joined Table

From Dev

Django Get multiple fields from database

From Dev

HTTPGet With Multiple Fields To Get Data From Database

From Dev

Django Get multiple fields from database

From Dev

Get latest table entry by a unique ID with multiple time stamps

From Dev

SQL - Fill one table from fields of another table

From Dev

SQL - Fill one table from fields of another table

From Dev

How to insert fields extracted from XML in one table into another table?

From Dev

Sql insert id from one table to entry in another

From Dev

A query with those fields, that are not required to get from huge fields within a table

From Dev

how to get multiple data from two different table from one database in php

From Dev

Remove one IP from DNS entry with multiple IPs

From Dev

Laravel 5.1 - hasMany relation on multiple fields inside one table

From Dev

How can I parse one field into multiple fields in the same table?

From Dev

MongoDB get all fields + sort by value computed from multiple fields

Related Related

  1. 1

    php / mysql to query one table with multiple identical fields and create one unique entry for each field in a second table

  2. 2

    Get one css file from webpack multiple entry points

  3. 3

    Joining multiple fields to one in another table

  4. 4

    SQL - Where In one table not the other (Multiple Fields)

  5. 5

    How to get data in gridview from one table but multiple select statements

  6. 6

    Get values from multiple sql server table by one query

  7. 7

    How to get records from one table which are not in another table's fields (3)

  8. 8

    Get Value From Double Entry Table

  9. 9

    Validate fields from one table to another in MySQL

  10. 10

    Select users from table that have at least one entry in diffierent table

  11. 11

    Multiple values in one entry

  12. 12

    How to get just the fields from a table in MySQL?

  13. 13

    Get the values of two fields from a table JOIN

  14. 14

    How to get just the fields from a table in MySQL?

  15. 15

    Datatables AJAX Get Fields from joined Table

  16. 16

    Django Get multiple fields from database

  17. 17

    HTTPGet With Multiple Fields To Get Data From Database

  18. 18

    Django Get multiple fields from database

  19. 19

    Get latest table entry by a unique ID with multiple time stamps

  20. 20

    SQL - Fill one table from fields of another table

  21. 21

    SQL - Fill one table from fields of another table

  22. 22

    How to insert fields extracted from XML in one table into another table?

  23. 23

    Sql insert id from one table to entry in another

  24. 24

    A query with those fields, that are not required to get from huge fields within a table

  25. 25

    how to get multiple data from two different table from one database in php

  26. 26

    Remove one IP from DNS entry with multiple IPs

  27. 27

    Laravel 5.1 - hasMany relation on multiple fields inside one table

  28. 28

    How can I parse one field into multiple fields in the same table?

  29. 29

    MongoDB get all fields + sort by value computed from multiple fields

HotTag

Archive