1
I am performing a process in my code, where the $_SESSION['test'] takes the value that returns from the bank, where it performs its function in parts, because if I have a single string, it loads the information perfectly, but if the string has space it does not recognize the whole value and brings the data in half. Example: if the bank returns the value "Test Street" the value that the $_SESSION returns is only "Street".
I wonder if the $_SESSION function does not recognize values with spacing and if there is any way to redeem this value and exchange the information between two PHP pages s.
Configuration.php:
<div class="col-md-9">
<label>Endereço</label>
<input type="text" class="form-control" id="end" name="end" value=<?php echo $_SESSION['endereco'] ?>><br>
</div>
Php updating the data:
$_SESSION['endereco'] = $consulta["endereco"] ;
Can [Edit] the question and add trouble code?
– Woss