Welcome Guest, Not a member yet? Register   Sign In
getting data from two different tables problem
#10

[eluser]haris244808[/eluser]
[quote author="TheFuzzy0ne" date="1364141470"]It will need some modification, but this should get you started.

Note: We're only using one loop.
Code:
<table>
    <thead>
        <tr>
            <td>
                Subject
            </td>
            <td>
                Description
            </td>
            <td>
                Created By
            </td>
            <td>
                Came From
            </td>
        </tr>
    <thead>
    <tbody>&lt;?php foreach ($files_query as $entry): ?&gt;

        <tr>
            <td>
                &lt;?php echo htmlentities($entry->subject); ?&gt;
            </td>
            <td>
                &lt;?php echo htmlentities($entry->description); ?&gt;
            </td>
            <td>
                &lt;?php echo htmlentities($entry->uploader_first_name.' '.$entry->uploader_last_name; ?&gt;
            </td>
            <td>
                &lt;?php echo htmlentities($entry->recipient_first_name.' '.$entry->recipient_last_name; ?&gt;
            </td>
        </tr>&lt;?php endforeach; ?&gt;

    </tbody>
</table>

I've picked different field names, so it's up to you to name them correctly.[/quote]

but files_query contains only the data from the 'files' table :

i need also full name of creator and sender to show to the same field Sadall data together in the table)


Messages In This Thread
getting data from two different tables problem - by El Forum - 03-23-2013, 04:16 PM
getting data from two different tables problem - by El Forum - 03-24-2013, 03:55 AM
getting data from two different tables problem - by El Forum - 03-24-2013, 04:01 AM
getting data from two different tables problem - by El Forum - 03-24-2013, 05:52 AM
getting data from two different tables problem - by El Forum - 03-24-2013, 06:10 AM
getting data from two different tables problem - by El Forum - 03-24-2013, 06:56 AM
getting data from two different tables problem - by El Forum - 03-24-2013, 07:53 AM
getting data from two different tables problem - by El Forum - 03-24-2013, 08:51 AM
getting data from two different tables problem - by El Forum - 03-24-2013, 09:11 AM
getting data from two different tables problem - by El Forum - 03-24-2013, 10:56 AM
getting data from two different tables problem - by El Forum - 03-24-2013, 12:22 PM
getting data from two different tables problem - by El Forum - 03-24-2013, 12:34 PM
getting data from two different tables problem - by El Forum - 03-24-2013, 12:40 PM



Theme © iAndrew 2016 - Forum software by © MyBB