I am trying to send an email from my Laravel project. Upon entering the store I get this error:
Call to a member function getRealPath () on string
The email is sent with an attachment, when it is sent without taking into account the...
Model: User
public function posts(){
return $this->hasMany(\App\Post::class);
}
public function follows() { //seguidos, a que usuarios sigue este usuario
return $this->belongsToMany(User::class, 'followers', 'user_id', 'follow...
I have the following code but when redirecting it generates the error ERR_RESPONSE_HEADERS_TOO_BIG
<?php
session_start();
$uri = "data:image/png;base64,iVBORw0KG //y mucho más cerca de 300 mil carácteres";
header('Location: ' ....
I'm trying to enable a text box with select with jquery
Here the code of js
<script>
$('#RegistroInmueble5DeSeguro_id_moneda').on('change', function (e) {
$(this).find('option').each(function () {
$(this).removeAttr("disab...
I am trying to separate a text HTML containing iframes from a preg_split , and it does not come out. What I need is to create a array with texts e iframes . For example ['texto', 'iframe', 'iframe', 'texo']...
How could this variable be passed to php, since I need it to make sql queries to a server.
Resolved
I sent via the fetch api, with POST the variable:
fetch('./php/views/certificacion_afiliacion_trabajador.php', {...
I want to change the values of my x-axis graph and put other numbers but I do not know how
<script>
Highcharts.chart('container', {
chart: {
type: 'column'
},
title: {
text: 'TIEMPOS DE ENTREGA'
},
subtitle: {
text: 'GRA...
Add a checkbox in the datagrid columns to be able to delete several records together, everything works fine. What I am looking for is that when selecting the rows to be deleted, they are painted in one color. Is there any way to do it?.
I'm work...
I would like you to help me with a problem I have:
In a modal I have a table with the data of some materials
In a column I have the insert button,
When you click on such a button, you must hide the modal and insert "Code and Materia...