Questions tagged as 'php'

0
answers

Create csv from json and send it by mail Angular

I have an Angular 6 application that lists a Json object. I want to put a field where the user enters his mail and automatically send that Json object converted to Csv as an attachment to his mail I did this but I think that the matter is no...
asked by 13.11.2018 / 04:04
0
answers

problem showing different colors using php vector in the googlechart library

I'm using the google library to make a graph using php link I have the following code that shows 2 elements of my database correctly. My problem is with this element that is not used, the one that I must implement to give colors to...
asked by 14.11.2018 / 12:07
1
answer

How to generate a message after completing a form correctly

Hi, I wanted to know how I can do so that when a user completes the form correctly, it generates a sending message without having to generate an extra page of sending. The idea that I had was that once the form was completed and the form disappe...
asked by 12.11.2018 / 23:48
0
answers

How can I download a word file with PhpWord and Ajax

I have a problem to download files with Ajax and PHP, when I open directly my file .php if I download the file, but when I call it from Ajax it only generates the file and does not download it, My Ajax function: $.ajax({...
asked by 12.11.2018 / 23:08
0
answers

PHP API with React Native to upload image and text

When I try to upload with html and php, I get perfect with this code <?php // Create database connection $db = mysqli_connect("localhost", "root", "", "image_upload"); // Initialize message variable $msg = ""; // If upload butt...
asked by 12.11.2018 / 21:54
0
answers

How to save records within a for?

I have the following records, as I need to save it in a record, I need to save all of them. The results of the data to be saved are the following: 13043:406090343,roam,56963757723,56963800030,324750007307002,0,0,0,0,1,0,0,4,2018/11/11 03:02:09...
asked by 12.11.2018 / 13:59
0
answers

Problems with IPN in sandbox

I created an account (with my ID) I created the application in: link I added the public URL at: link I clicked on the test button (sandbox) and the answer gave OK. I used the credentials that the application gave me. I created the...
asked by 12.11.2018 / 12:37
0
answers

How can I save this array in a database?

I need to store all the fields in this array in the database Array ( [0] => 13043:406090343 [1] => roamvtr [2] => 56963757723 [3] => 56963800030 [4] => 324750007307002 [5] => 0 [6] => 0 [7...
asked by 12.11.2018 / 14:52
0
answers

Calculate age in php

How you can get age from date of birth in Date format yyyy-mm-dd while ($fila=$resul1->fetch_assoc()) { $tiempo = strtotime($fila['fecha_nac']); $ahora = time(); $edad = ($ahora-$tiempo)/(60*60*24*365.25); $edadFinal = floor...
asked by 12.11.2018 / 19:45
0
answers

Migrate Triggers to different databases in Laravel

I have a problem, it turns out that I work with laravel and migrate several tables to different databases thanks to Schema :: connection in a normal way, but the problem is that I also have some TRIGGERS and PROCEDURES as migrations using the...
asked by 12.11.2018 / 19:53