Questions tagged as 'variables'

1
answer

Problem with global variable in Android

Variables_HassMovil public class Variables_HassMovil{ private static Variables_HassMovil instance; private String cuenta,calibre,nombrecalibre,fechamostrar; private Variables_HassMovil(){} public void setCuenta(String Cuenta){ this.cuen...
asked by 28.01.2017 / 11:11
1
answer

How to pass variables from PHP to jQuery? [closed]

                  <?php $consulta = "SELECT idPais FROM pais"; $resultado = $conexion->query($consulta)or die("Error de busqueda o conexion"); while ($paisBuscado = $resultado->fetch_assoc() ) { $pais = utf8_encode($paisBusc...
asked by 09.03.2017 / 13:36
1
answer

Best way to pass several variables

Very good, I have a form in which to accept, I have to pass the content of 5 fields to a function, my question is: Is there any way a little more efficient to pass 5 variables to a function? Maybe Json? Thank you very much     
asked by 04.09.2017 / 12:47
1
answer

How to receive all data for $ _POST, without being assigned by a variable? [duplicate]

I have the following cycle that converts the data received for POST at once without assigning it to an Ejm variable: ////Envio $_POST['name']='valentina' and with if(@$_POST) { foreach($_POST as $campo => $valor) {...
asked by 25.08.2016 / 05:56