Posts by José Campillo • 28 points
2 posts
-
1
votes1
answer47
viewsA: Place content inside PHP fopen
For this, you must use the function fwrite. <?php $pagina = 'pagina'; $ext = '.php'; $arquivo = fopen ($pagina.$ext, 'w+'); fwrite($arquivo, '<?php echo "Qualquer texto inicial."; ?>'); if…
phpanswered José Campillo 28 -
0
votes1
answer235
viewsQ: Data Return with Angular
I have a service with the following structure: import {Injectable} from '@angular/core'; import {HttpClient} from '@angular/common/http'; import 'rxjs-compat/add/operator/map'; import {map} from…