Questions tagged as 'php'

2
answers

array_key_exists (): The first argument should be either a string or an integer

I get this error when I try to Save to the Store public function store(Request $request) { $files = $request->file('links'); $destinationPath = 'boletines'; if($request->hasFile($files)){ $cliente = $request->i...
asked by 26.11.2018 / 18:29
0
answers

Excel report in php

I have a problem with my excel download php script This is my table that will be generated in excel .The following is my php code that generates the report in excel <?php require "../conexion.php"; if(($_G...
asked by 27.11.2018 / 02:49
0
answers

use proxy with phpmailer

I describe my situation. I have a system that sends emails via phpmailer but I would like to do it now through proxy. So my question is how to configure the proxy to function. $mail = new PHPMailer; $mail->IsSMTP();...
asked by 27.11.2018 / 02:47
1
answer

Use ONCHANGE in datepicker de gijgo

I have this entry, in a form. But the use of onchange="submit ()" invalidates my selection. <div class="form-group"> <div class='input-group date'> <span class="input-group-addon" title="Fecha vi...
asked by 26.11.2018 / 19:21
0
answers

Fatal Error after activating Theme in Wordpress

After installing a template and activating it, I receive this message (attached capture) I copy the content of the post-media.php document the truth is that I have reviewed and I do not know what to do ... Thanks for the help! <...
asked by 23.11.2018 / 20:45
1
answer

How to show the existing username in a database with jQuery AJAX?

You could say that I am "new" in this php language and mysql queries, since you are developing a website, practically Social Network, which is centralized in hosting photos by users, that is, each registered user has the opportunity to upload yo...
asked by 22.11.2018 / 16:45
1
answer

Deposit several selected users one by one in database,

The problem that occurs is the following I have a table with checkbox, I click on several to be sent with a file that you select, by clicking on the button to upload file to each user that you select in the view . This is the controller's method...
asked by 22.11.2018 / 17:48
0
answers

API that has objects inside the main

I have this API: if(isset($_GET['id'])) { $json = ''; $banner = true; $id=$_GET["id"]; $connection = new MySqlServerConnection(); $query = 'SELECT s.id,s.description,s.ipAddress,r.id AS readingId,r...
asked by 04.12.2018 / 00:25
0
answers

Error creating tables

I have the following error Can not create table 'base1.articles' (errno: 150) by passing the create table command to my database, which does not allow me to create the table posts within it CREATE TABLE 'articulos' ( 'id' int(11) NOT NULL A...
asked by 20.11.2018 / 23:56
1
answer

Equivalent FileInputStream in PHP

I would like to pass a PDF file to a binary text string to store it in a field of a SQL Server database (VarBinary). The Java code that is responsible for storing it is the following: FileInputStream fis = new FileInputStream(doc); stmt.s...
asked by 21.11.2018 / 13:11