I have the following code but does not work. What must be fixed?
while ($row = mysql_fetch_array($result))
{
$palabra = $row['palabra'];
echo = '<marquee behavior="alternate" direction="up" width="80%"><marquee direction="right">'
.$palabra.'</marquee></marquee>
';
}
// instead of the variable I obtained the same variable
This is the page:
while ($row = mysql_fetch_array($result))
{
$palabra = $row['palabra'];
echo = '<marquee behavior="alternate" direction="up" width="80%"><marquee direction="right">'
.$palabra.'</marquee></marquee>
';
}
// instead of the variable I obtained the same variable
This is the page:
Comment