PHP error

QuoteNotice: Undefined variable: alt in /home/mazlum/domains/onlinestereo.org/public_html/index.php on line 266">


Line:

Quote<td><center><A HREF="http://www.dutchleader.nl/top50/in.php?userid=1337&siteid=2"TARGET="_blank" class="style6"><img src="<?php echo $img; ?>"width="96" height="66" border="0" alt="<?php echo $alt; ?>"></A></center></td>


Whats the problem?o.O

The website is working: www.onlinestereo.org / www.onlinestereo.nl
Comments
13
your face
your ass
what's the difference?
The DNS Servers.
Parent
format
Can't, i'm not the server owner.
Parent
<?php
$alt= "page suxx xD";
echo $alt;
?>

shuuud fix it :PP
$alt seems 2 be undeclared

$alt = 'fu';
echo $alt;

btw, all html tags should be uncapitalized
this code is working 4 me:

Quote
<?PHP
$alt = 'fu';
$img = 'lol.gif';
?>
<html><body>
<table><tr><td>
<a href="http://www.dutchleader.nl/top50/in.php?userid=1337&siteid=2"target="_blank" class="style6">
<img src="<?php echo $img; ?>" width="96" height="66" border="0" alt="<?php echo $alt; ?>">
</a>
</td></tr></table>
</body></html>
yep $alt is not defined...
No, its the link.
Parent
ERROR_REPORTING(0);

höhö...
are you sure you are using the variable img ?

OWNED
Back to top