php en glow text effect

Pagina: 1
Acties:
  • 49 views sinds 30-01-2008

  • Icetree
  • Registratie: November 2001
  • Laatst online: 03-04-2022
PHP:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php  

$counternum = "counter.txt";  

function displayCounter($counternum) {  
     $fp = fopen($counternum,rw);  
     $num = fgets($fp,9999);  
     fclose($fp);  
     $fp = fopen($counternum,w);  
     $num += 1;  
     print "$num";  
     fputs($fp, $num);  
     fclose($fp);  
}

include('guest.php');

displayCounter($counternum);


?>


Dit is het counter script en ik laat de waarde dus zien via displayCounter($counternum); maar nu wil ik zeg maar het onderstaande script er mee combineren zodat ik een glow effect krijg.

PHP:
1
<p>style="filter:glow(color=green strength=5);font-family:arial;font-weight: BOLD;font-size:'18pt'"></p>


zoals dit:

http://members.lycos.nl/snowplaza/tweak.php

Maar hoe doe ik dit.

Verwijderd

<?
include("counter.php");
<p style="filter:glow(color=green strength=5);font-family:arial;font-weight: BOLD;font-size:'18pt'"> GetdisplayCounter() </p>

?>

Verwijderd

euhm,

gewoon waar je dat stukkie van de counter print die style eroverheen gooien?

  • drm
  • Registratie: Februari 2001
  • Laatst online: 09-06-2025

drm

f0pc0dert

HTML, JavaScript en Flash topics *13-01*

Verder is dit met google en de alombekende "view source" best op te lossen, dus ik geef je in W&G ook niet veel kans.

Music is the pleasure the human mind experiences from counting without being aware that it is counting
~ Gottfried Leibniz


Dit topic is gesloten.