added switch on off for server console log

This commit is contained in:
asus
2024-02-08 16:42:16 +01:00
parent 373eee7fdb
commit c41b184221
14 changed files with 31 additions and 19 deletions

View File

@@ -0,0 +1,7 @@
<p>i am a new p</p>
<p class="first_el_to_change">to change</p>
<?php
foreach($names as $name) {
include($html_dir."templates/presentation.html");
}
?>

View File

@@ -0,0 +1,9 @@
<?php
foreach($ages as $age) {
?>
<p>age <?php echo esc_html($age); ?></p>
<?php
}
?>
<p class="third_el_to_change">to change</p>
<p>aaaaaand this is the end</p>

View File

@@ -0,0 +1,2 @@
<p>hello <?php echo esc_html($name); ?></p>
<p class="second_el_to_change">to change</p>