I'm a beginner in language and I'm trying to learn by myself, I created a .blade.php file in order to fill two simple fields and return the calculation via submit, after that I want to list a history stored in the SQL database, but I barely know...
I have the following method
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use Validator;
use App\Pessoa;
class PessoaController extends Controller
{
public function lista( Request $request ){...
To retrieve the contents body of a transaction that we receive via POST we use this function file_get_contents('php://input') . But there are several companies that can send a post request to our service and I need to know wh...
I am trying to download a backup file that is located on an authenticated site using wget. I crawled http behavior when I login through my browser and these are the parameters:
https://quire.io/login
continue:
s_password: fakepass
s_rememberM...
In Web requests when posting data on a server a string from the template below (using the parameters):
string hello = "hello";
string token = "teste==";
It is transformed into post data like the ones shown below:
string post = "msg=hell...
Developing an application using Laravel 5.2, PHP7.0, Apache2 and CentOS 7, I'm having the following error: MethodNotAllowedHttpException .
On the local server it works normally ... when I publish to the production server the error occurs, it...
I have the following function:
var form = $("#formEditarCompra");
var meioPublicacao = $("#MeioPublicacao").val();
if (form.valid() && setarFocoErro()) {
mostrarAguarde();
$.post(form.attr("action"), { compra: form...
I have a data listing on a page. There an 'editing image' serves as a link to another page where this data is displayed again (in addition to the other client data) and it is possible to edit them. As follows, the destination page is edit.php...
I need help on a form in PHP complex, because in addition to sending email to administrators, it also sends to the client. The email is in html and automatically creates a pdf through html2pdf .
So it's working,...