Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

153
Views
Match text and img in Datatables PHP

So, I'm generating some dummy data with FakerPHP

Either by generating data or manually putting it into my Datatables
Based on the BRAND of the car, id like to automatically display the right IMG

For example I generate 500 new rows of BRAND "AUDI"
and I want to auto display "AUDI.jpg"
In every column that BRAND is AUDI, display the logo picture as well.

What would be the optimal way to do this?
Example: https://i.imgur.com/vrP16ig.png

about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

you can name logo picture same as brand name so that in picture column you can display logo base on brand name like the recontructed table below:

<table border="1">

                <thead>
                    <tr>

                        <th >BRAND</th>
                        <th >Model</th>
                        <th >Sub model</th>
                        <th >year</th>
                        <th >price</th>
                        <th >Photo</th>
                    </tr>
                </thead>
    
                <tbody>
                    <tr>
                        <td><?php echo $row['brand']; ?></td>
                        <td><?php echo $row['model']; ?></td>
                        <td><?php echo $row['submodel']; ?></td>
                        <td><?php echo $row['year']; ?></td>
                        <td><?php echo $row['price']; ?></td>
                        <td><img src="images/<?php echo $row['brand']; ?>.jpg" alt="" ></td>
                    </tr>
    </tbody>

</table>
about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!