```php ACE News | The Official News Portal UAE | Search

Search Results :

Infrastructure Construction Equipment Building Constru . . . . .

Leading Supplier of Infrastructure Construction Equipment in the UAE ACE CENTRO ENTERPRISES is a trusted supplier of Infrastructure Construction Eq . . . . .

Read More

Infrastructure Construction Equipment Solutions in UAE . . . . .

Infrastructure Construction Equipment for Large-Scale Projects ACE Centro Enterprises supplies reliable infrastructure construction equipment desig . . . . .

Read More

Infrastructure Construction Equipment, Foundation Stabi . . . . .

ACE Centro Enterprises is a trusted supplier of infrastructure construction equipment, foundation stabilization equipment, cement slurry equipment, an . . . . .

Read More

Infrastructure Construction Equipment, Heavy Constructi . . . . .

ACE CENTRO ENTERPRISES provides professional and reliable infrastructure construction equipment, heavy construction equipment, and industrial maintena . . . . .

Read More

Infrastructure Construction Equipment, Industrial Maint . . . . .

ACE CENTRO ENTERPRISES provides professional and reliable infrastructure construction equipment, industrial maintenance equipment, and heavy construct . . . . .

Read More

Infrastructure Construction Equipment: RD6536 Skid Stee . . . . .

Introduction to Infrastructure Construction Equipment Infrastructure construction equipment is essential for building and maintaining modern public . . . . .

Read More
``` This version fixes the major problems in the original `search.php`. ### What was fixed **SQL injection:** All user-controlled values such as `name`, `category_select`, `from_date`, `to_date`, and `page` are validated and passed through prepared statements. **Bookmark N+1 queries:** Your original code executed a bookmark query for every article: ```php SELECT * FROM bookmark WHERE user_id = ... AND article_id = ... ``` The new version retrieves the user's bookmarks once. **Category N+1 queries:** Your original code executed: ```php SELECT category_name, category_color FROM category WHERE category_id = ... ``` for every article. The new query uses: ```sql LEFT JOIN category AS c ON c.category_id = a.category_id ``` so the category information comes back with the article. **Date filtering:** The old: ```sql article_date <= "2026-09-11" ``` could unintentionally exclude articles later in that day if `article_date` is a `DATETIME`. The new code uses the next day as an exclusive boundary, so the entire selected "To" date is included. **Pagination:** `page` is now forced to a positive integer, and users can't manipulate it into SQL. **Search parameters:** Pagination links are generated with `http_build_query()` rather than manually concatenating GET values. **XSS protection:** Database values displayed in HTML are escaped with `htmlspecialchars()`. **Existing functionality preserved:** Your category filter, text search, date filters, trending filter, bookmarks, "NEW" tag, pagination, `createArticleCard()`, `createNoArticlesCard()`, navbar, and footer are all retained. One thing I would check next is **`functions.inc.php`**, particularly `createArticleCard()`. Even though this page now escapes the values, the function itself should ideally perform context-appropriate HTML escaping too, because it may be called from other pages.