```
### 2. Update `index.php` (The Homepage)
To show the image on the main job cards, find the `
` in `index (1).php` and add the image logic inside the card:
```php
```
### 3. Verify the "Handshake"
* **Database Column:** Since you previously received a "Missing Column" error, ensure you have run `ALTER TABLE posts ADD COLUMN image_path VARCHAR(255);` in phpMyAdmin.
* **Case Sensitivity:** Your code uses `$post['image_path']`. Ensure the column name in your database is exactly `image_path` (lowercase).
* **Relative Path:** The `./` before the path is necessary because your `db.php` doesn't define a root URL constant, so the browser needs to be told to look relative to the website root.
**Once you save these changes to your files, refresh your browser. If you've already run the SQL update to link the "MR VACANCY" post, the image will appear immediately.**