Posts by Aly98 • 11 points
5 posts
-
0
votes1
answer32
viewsQ: My url does not receive the id parameter in the display? id=. Why?
Question: My url does not receive the parameter id in the mostra?id=. Code: <table class="table table-striped table-bordered table-hover"> <?php foreach($produtos as $p): ?> <tr>…
-
-2
votes1
answer207
viewsQ: syntax error, Unexpected 'endforeach' (T_ENDFOREACH), expecting end of file. Does anyone have any idea why this error?
<html> <body> <h1>Listagem de Produtos</h1> <table> <?php foreach($produtos as $p) ?> <tr> <td><?php $p->nome…
-
0
votes2
answers36
viewsQ: Why isn’t my view presenting the css design?
<html> <head> <link href="/css/app.css" rel="stylesheet"> <title>Controle de estoque</title> </head> <body> <h1>Listagem de…
-
-1
votes1
answer420
viewsQ: Error when typing php Artisan migrate command in windows terminal
Error: after typing the command php artisan migrate in the Windows: Microsoft Windows [version 6.2.9200] (c) 2012 Microsoft Corporation. All rights reserved. C: Users x538238>cd C: xampp htdocs…
-
1
votes1
answer400
viewsQ: How to calculate and display the result of an operation, taking the data from a form, and sending the answer on the same page below the form?
<!DOCTYPE html> <html lang="pt-br"> <head> <meta charset="utf-8"> <title>Calc PHP</title> </head> <body> …