Jump to content

Array a result


codrgi

Recommended Posts

I'm using a select columname from table query using php, and the result returns more than 1 result, how to i set an array to collect all the data

 

The query im using is just like below

 

$query = "select columname from table";
$result = odbc_exec($connect, $query) or die("");
$table = odbc_result($result,1);

 

How do i make the result collect all the data, not just the first column?

Link to comment
https://forums.phpfreaks.com/topic/153646-array-a-result/
Share on other sites

You also need to select more than one column from your table (you still have to change $table as MasterACE mentioned).  In your query, you're just selecting a single column: columnname.  You can specify all of the columns you want to select by doing

 

select column1,column2,column3 from table

 

or select them all by using *

 

select * from table

 

I would not recommend using * unless you really are using all of your columns, though.  Should only select what you are going to use.  Less work for the system = faster execution time.

Link to comment
https://forums.phpfreaks.com/topic/153646-array-a-result/#findComment-807405
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.