0
is it possible to use materialize in a php file next to javascript ? on the return of a php function I want to issue a Materialize.Oast(); however I’m not succeeding, I already referenced the file that has all css and materialize calls in php and even then it didn’t work, I’m trying to do it this way in php file.
<?php include("../head.php"); // chamadas css e materialize
echo '<script>Materialize.toast(" teste ", 4500, "blue rounded");</script>'
?>