I want to put a scroll for some dynamic contet on my webpage, but I do not know how.
I tried putting it inside a textarea but that did not work. Is there any way I cuould put a scroll here(scroll down to where it says [Scroll]):
while($send_array = mysql_fetch_array($send_query)){
$send_eMail = $send_array['eMail'];
$employee_query = mysql_query("SELECT * FROM employee_info WHERE eMail='$send_eMail'");
$employee_array = mysql_fetch_array($employee_query);
$firstName = $employee_array['firstName'];
$lastName = $employee_array['lastName'];
$country = $employee_array['country'];
if($send_eMail != $eMail){
echo "
<tr>
<td style='padding-top: 10px'>
//--------------Scroll---------------//
<a href='profile.php?site=info&self=0&q=" . $send_eMail . "'>" . $firstName . " " . $lastName . "</a>
//--------------Scroll---------------//
</td>
</tr>";
}
}
I tried putting it inside a textarea but that did not work. Is there any way I cuould put a scroll here(scroll down to where it says [Scroll]):
while($send_array = mysql_fetch_array($send_query)){
$send_eMail = $send_array['eMail'];
$employee_query = mysql_query("SELECT * FROM employee_info WHERE eMail='$send_eMail'");
$employee_array = mysql_fetch_array($employee_query);
$firstName = $employee_array['firstName'];
$lastName = $employee_array['lastName'];
$country = $employee_array['country'];
if($send_eMail != $eMail){
echo "
<tr>
<td style='padding-top: 10px'>
//--------------Scroll---------------//
<a href='profile.php?site=info&self=0&q=" . $send_eMail . "'>" . $firstName . " " . $lastName . "</a>
//--------------Scroll---------------//
</td>
</tr>";
}
}