Jump to content

[SOLVED] change link color in php


dsaba

Recommended Posts

i'm making a search cloud page, where the latest keywords that have been searched are listed in a table

it pulls this information from my database

 

now I want to change the color of the link depending on their serach count for example

 

keyword > 100 counts - make the link green

keyword <100 counts make the link blue

 

is there a way to do this in php?

 

also i realize that you can use css to change link colors in a page, but I don't know how to use css to specifically change only certain links, and make those certain colors

 

 

thanks

Link to comment
https://forums.phpfreaks.com/topic/41004-solved-change-link-color-in-php/
Share on other sites

<?php
$number = //however you want to get your resutls, I believe you should use mysql_count_rows()
if ($number > 100) {echo "<a href=\"http://\"><font color=\"#66CD00\">Link</font></a>";}
else {echo "<a href=\"http://\"><font color=\"#007FFF\">Link</font></a>";}
?>

Ted

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.