Questions tagged as 'php'

0
answers

Creation of columns in Hightchart

Good morning, the example I should show is like the following link here is where the data is collected var chartseries = [{ name: 'Year 1800', data: [107, 31, 635, 203, 2] }, { n...
asked by 22.03.2018 / 22:37
0
answers

How to recover the path of an image in Database?

I have a problem recovering the path of an image in my database, the image is uploaded correctly, the route is captured well, only that the word Array comes out first, and I do not have idea because, I need you not to say that in order to use...
asked by 22.03.2018 / 18:59
1
answer

Clear comments in an HTML string with PHP

I have an html string and I need to delete the commented code in that string, that is, if I find: "código útil <!-- codigo basura --> mas código útil <!-- mas código basura --> Remove everything that is garbage for($cadenaHTML...
asked by 01.11.2017 / 19:45
0
answers

Send audio data (client) with Websocket for an Audio Streaming

I have the following code that sends the video: window.URL = window.URL || window.webkitURL; navigator.getUserMedia = ( navigator.getUserMedia || navigator.webkitGetUserMedia || navigator.mozGetUserMedi...
asked by 01.11.2017 / 21:46
1
answer

Help my transaction in php pdo is sometimes done and sometimes not

I am carrying out a transaction, what I do first is a post of values obtained from a form of both arrays and variables, sometimes the values are inserted correctly in the table orders and detail, in other occasions this does not occur. <?ph...
asked by 01.11.2017 / 18:50
3
answers

Load values in drop-down select with MySQL PHP and HTML

I have a table in my database called "client types", with 3 fields: user, type, discount. Class code Clients : <?php /** * Clase TiposClientes. */ class TiposClientes { private $idusuario; private $tipo; private $descue...
asked by 02.11.2017 / 20:41
0
answers

Error consuming restful service POST java in PHP client

I have a RestFul service done in java from which I have been able to obtain the list of products that I have registered in the database, but when calling the POST function to insert one, it sends me an error: "The request sent by the client was...
asked by 22.10.2017 / 22:13
0
answers

modify .htaccess using CODEIGNITER

I have a section where I want to edit the .htaccess file using a <textarea> field ... but here comes the problem, this is my original htaccess: <IfModule mod_rewrite.c> RewriteEngine On RewriteCond $1 !^(index\.php|resource...
asked by 04.12.2017 / 16:22
1
answer

Get data from a ckeckbox

I have this array that shows me the subjects of a module. Now, I want that once you have selected the license plates you want, when you press a button, the options of the checkbox that I have chosen will be displayed. How could it be done? $mo...
asked by 04.12.2017 / 23:10
0
answers

Notice: Trying to get property of non-object in C: \ xampp \ htdocs \ login \ log.php on line 18

<?php $connect= new mysqli('localhost', 'root','' ,'prueba2'); if($connect->connect_error){ die('connection failed'); }else { echo 'connection worked'; } $username= $_POST['username']; $password= $_POST['password'];...
asked by 04.12.2017 / 02:01