I just wanted to know if you can echo statements in CSS styles?
How would i go about doing it for the following command?
if ($result->num_rows > 0) {
while ($row = $result ->fetch_object())
echo "$row->User_Name, $row->To_Rent_Price $row->Property_Details<br />" ;
} else {
echo "No results found.";
}
}
?>