1
Questions / Re: View not showing record
It is very strange.
This section allows you to view all Show Posts made by this member. Note that you can only see Show Posts made in areas you currently have access to.
@zolwito please use the bootstrap class text-nowrap to do that. You can read more about bootstrap classes for text over here.
$status_text = $db->rawQueryOne("SELECT text_email FROM status WHERE id_status ='" . $modeldata['status_id'] . "'");
$mailer = new Mailer;
$texthtml = $status_text['text_email'];
$mailer->send_mail("myemail@gmail.com", "An Example Subject", "The message to be sent.<br><br>texthtml-->$texthtml<--<br><br><br>IT Team");
$status_text = $db->rawQueryOne("SELECT texto_email FROM status WHERE id_status ='" . $modeldata['status_id'] . "'");
$mailer = new Mailer;
$mailer->send_mail("myemail@gmail.com", "An Example Subject", "The message to be sent.<br><br>-->$status_text<--<br><br><br><br>IT Team");
$status_text[0];And all the same result.
$status_text[1];
print_r($status_text);