perahh commited on
Commit
4b68a55
1 Parent(s): 3396092

modificacion en variables.php

Browse files
Files changed (2) hide show
  1. app/index.html +4 -2
  2. app/variables.php +13 -0
app/index.html CHANGED
@@ -8,9 +8,11 @@
8
  }
9
  </style>
10
  <body>
 
11
  <?php
12
- echo "Esperanza Hernandez Herrera!";
13
- ?>
 
14
  <img src="https://static.vecteezy.com/system/resources/previews/000/672/440/original/back-to-school-mother-and-daughter-kissing-vector.jpg" alt="Madre eh hija" width="500" />
15
  </body>
16
  </html>
 
8
  }
9
  </style>
10
  <body>
11
+ <p>
12
  <?php
13
+ echo "Esperanza Hernandez Herrera!";
14
+ ?>
15
+ </p>
16
  <img src="https://static.vecteezy.com/system/resources/previews/000/672/440/original/back-to-school-mother-and-daughter-kissing-vector.jpg" alt="Madre eh hija" width="500" />
17
  </body>
18
  </html>
app/variables.php ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <body>
4
+ <p>
5
+ <?php
6
+ $txt = "my second php script!"
7
+
8
+ echo $txt;
9
+ ?>
10
+ </p>
11
+ <img src="https://static.vecteezy.com/system/resources/previews/000/672/440/original/back-to-school-mother-and-daughter-kissing-vector.jpg" alt="Madre eh hija" width="500" />
12
+ </body>
13
+ </html>