Change the URL category Change the URL category
 

News:

CPG Release 1.6.27
change DB IP storage fields to accommodate IPv6 addresses
remove use of E_STRICT (PHP 8.4 deprecated)
update README to reflect new website
align code with new .com CPG website
correct deprecation in captcha

Main Menu

Change the URL category

Started by serg5777, June 30, 2012, 03:45:23 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

serg5777

Help please to change. The file index.php:
$link = "<a href=\"index.php?cat={$cid}\">{$cat['details']['name']}</a>";
changing this:
$link = "<a href=\"cat={$cid}\">{$cat['details']['name']}</a>";
But the URL stops working. What should still change the code? Thank you :)

ΑndrĂ©

Without having a clue what you're doing, try
$link = "<a href=\"?cat={$cid}\">{$cat['details']['name']}</a>";

serg5777