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
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

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.