Konu
PHP html içine php ekleme
18-12-2022, 00:04:15
#6
eypoffcl
<?php
$alert = '
<div class="alert alert-success" role="alert">';
//php kodları buraya
$alert .= '</div>';
?>
Ya da
$alert = '
<div class="alert alert-success" role="alert">
' . PHP Kodları buraya . '
</div>';