Jump to content

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

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.