Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have the code below:

$html .= "<ul><center><p>";
while ($row = mysql_fetch_array($result)) { //loop
  extract($row);
  $html .= "<li><a href=\"{$link}\" target=\"_blank\">{$link}</a> - {$notes}</li>";
  }
$html .= "</ul></center></p>";

How would I change the text color and font of {$notes}?

share|improve this question
10  
This is an HTML question (& CSS) that has nothing to do with either php or mysql. You could have abstracted those elements out of the question. – Lightness Races in Orbit Mar 12 '11 at 16:50
it is being used in a php script which uses mysql to get {$link} and {$notes} – Will Evans Mar 12 '11 at 16:53
1  
Google 'CSS' and learn about it. – bažmegakapa Mar 12 '11 at 16:55
5  
That's not relevant at all. You're trying to colour HTML elements. Where you get the text from has nothing at all to do with it. That's why I said you could (and should) have abstracted them out. Is the question also about the Corn Flakes you ate this morning to give you the energy to program today? – Lightness Races in Orbit Mar 12 '11 at 16:58
don't you learn already from your very recent question how to add htmp tags into PHP strings? Or you're gonna ask separate question for the every HTML tag you're going to use on your site? – Your Common Sense Mar 12 '11 at 17:05

closed as not a real question by Jay Gilford, luser droog, Yogesh Suthar, Rikesh, sgar91 Mar 7 at 5:00

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

3 Answers

up vote 38 down vote accepted

Wrap it in a span element and either add a class attribute and reference it in a stylesheet or add a style attribute and list them there.

Class method

This is the preferred method as it easily lets you separate your presentation (CSS) and data layer (HTML) of your view.

CSS

.something {
   color: red;
   font-family: Georgia, "Times New Roman", serif;
}

The color property can take the color value as...

  • a name (in the example above, red).
  • a hexadecimal number prefixed with a # (e.g. #ff0000) in the format of #rrggbb. If the pairs are identical, e.g. #ff00cc you can use shorthand notation #f0c.
  • a rgb(a) value, such as rgb(255,0,30) with an optional alpha value, e.g. rgb(0,0,255,0.8). The upper bound is an one byte unsigned int, or 255. The values can also be percentages.

Further Reading.

The font-family property can take a comma delimited list of font names, where if the font on the left is not present, it looks to the right for a fallback, and so forth. If there is a space in the font name, use quotes to reduce ambiguity in the font title. It is also considered good practice to include serif or sans-serif at the end, in case the user has a very small subset of fonts and you want to ensure serifs or not.

Further Reading.

HTML

<span class="something">{$notes}</span>

style attribute

This method is not recommended, but possible. It tightly couples your presentation and data layer (by binding them together).

It also means you can not use any of the advantages of an external CSS file (fine grained cache control, selectors etc).

HTML

<span style="color: red; font-family: Georgia, 'Times New Roman', serif;">{$notes}</span>

You will notice I used single quotes (') there to not clash with the double quote (") delimiters of the HTML attribute.


In addition...

You really want to learn from day 1 the best way to output HTML, and the best way is not to intersperse functions such as mysql_fetch_array(). Mixing PHP with HTML is not recommended, because it again mixes your layers (business rules and presentation layer).

What would happen if your boss said OK, now we want that as JSON and XML. Are you going to copy and paste your MySQL specific code 3 times?

The best best here is to build your array first, and from the variable names, we may want to call it $links.

$links = array();
while ($row = mysql_fetch_array($result)) { 
  $links[] = array(
      'link' => $row['link'],
      'notes' => $row['notes']
  );
}

(note that if $row only had the keys link and notes, you could append the $row variable itself directly to $links).

Note that extract() is rarely a good idea. It can easily clobber existing variables, especially in the context of HTML and PHP functions mixed together. If you must use it, use extract($array, EXTR_SKIP) so you don't clobber existing variables, which would be a debugging nightmare.

When you interpolate variables in double quote delimited strings, you only need the braces ({}) when there is ambiguity in the variable, such as $a['b'], $a->b, etc.

In the example above, you would determine the view context (HTML in this example) and then pass $links to it, which you could then generate the HTML in a clean manner...

<ul>
<?php foreach($links as $link): ?>
   <li><a href="<?php echo $link['link']; ?>"><?php echo $link['link']; ?></a> - <?php echo $link['notes']; ?></li>
<?php endforeach; ?>
</ul>

I have removed the invalid HTML nesting and deprecated element (center). If you want to center it, give it a fixed width and margin: 0 auto.

Also, target="_blank" has been deprecated in XHTML Strict, but not HTML5. If using a doctype where it is deprecated, consider using a JavaScript workaround. Change the click handler to have window.open(this.href, '_blank') and cancel the default behaviour.

Also, if link and notes are from user input, make sure link conforms to the syntax of an encoded URL. If notes is from user input, you may need to htmlspecialchars() it first to ensure no HTML is echo'd as is.

I have also used PHP's alternate control structure syntax, because it is popular in views and does read better, i.e. no which } does that close? confusion.

One further thing you may want to do is display a friendly message if the array is empty.

<?php if(empty($links)): ?>
<p>No links yet, check back soon.</p>
<?php else: ?>
<ul>
<?php foreach($links as $link): ?>
   <li><a href="<?php echo $link['link']; ?>"><?php echo $link['link']; ?></a> - <?php echo $link['notes']; ?></li>
<?php endforeach; ?>
</ul>
<?php endif; ?>

Use the comments if seeking any further clarification, and good luck :)

share|improve this answer
2  
How would I do this? – Will Evans Mar 12 '11 at 16:44
@Will Replace {$notes} with <span class="whatever">{$notes}</span>. – alex Mar 12 '11 at 16:47
$html .= "<li><a href=\"{$link}\" target=\"_blank\">{$link}</a> - <span style=\"color:red;  font-family: Verdana;\">{$notes}</span></li>";
share|improve this answer
I get an unexpected T-String – Will Evans Mar 12 '11 at 16:45
Fixed the solution – Vadiklk Mar 12 '11 at 16:46
How would I make the font Verdana aswell? – Will Evans Mar 12 '11 at 16:49
Edited so there will be the new font aswell – Vadiklk Mar 12 '11 at 16:50
<li><a href=\"{$link}\" target=\"_blank\">{$link}</a> - <span style=\"color:blue\">{$notes}</span></li>
share|improve this answer
2  
Class attribute prefered, but the style tag does work. – Trevor Mar 12 '11 at 16:45
how would I make the font Verdana? – Will Evans Mar 12 '11 at 16:48
font-family:verdana – Trevor Mar 12 '11 at 17:09

Not the answer you're looking for? Browse other questions tagged or ask your own question.