HTML interesse |
|
Ik hoop dat ik dit topic hier goed heb geplaatst, want het gaat hier geloof ik om HTML.
_________
http://i25.tinypic.com/r8hu9d.png
Als je naar dit plaatje kijkt, zie je een hele witte ruimte tussen "Aanvallen" en "Level - Aanval - Type". Ik vermoed dat het door die hieronder staande code komt, want als ik daar wat aanpas, verandert er iets.
$attack = $pokeidd['attack_ever'];
$attack = "<table width='400px'><TR><TD align='center'><STRONG>Level</STRONG></TD> <TD align='center'><STRONG>Aanval</STRONG></TD> <TD align='center'><STRONG>Type</STRONG></TD></TR> ". $attack. "</TABLE>";
$attack = str_replace("[l]", "<TR><TD align='center'>", $attack);
$attack = str_replace("[/l]", "</TD>", $attack);
$attack = str_replace("[a]", "<TD align='center'>", $attack);
$attack = str_replace("[/a]", "</TD>", $attack);
$attack = str_replace("[s]", "<TD align='center'><img src='http://www.sinnoh.nl/images/sprites/icons/", $attack);
$attack = str_replace("[/s]", ".png'></TD></TR>", $attack);
$attack = $pokeidd['attack_ever']; $attack = "<table width='400px'><TR><TD align='center'><STRONG>Level</STRONG></TD> <TD align='center'><STRONG>Aanval</STRONG></TD> <TD align='center'><STRONG>Type</STRONG></TD></TR> ". $attack. "</TABLE>"; $attack = str_replace("[l]", "<TR><TD align='center'>", $attack); $attack = str_replace("[a]", "<TD align='center'>", $attack); $attack = str_replace("[s]", "<TD align='center'><img src='http://www.sinnoh.nl/images/sprites/icons/", $attack); $attack = str_replace("[/s]", ".png'></TD></TR>", $attack);
Kan iemand mij verder helpen, zodat er geen witruimte meer tussen zit?
|