class Produto {
protected $nome;
protected $valor;
public function __construct($nome, $valor) {
$this->nome = $nome;
$this->valor = $valor;
}
public function addProd($nome, $valor){
$prod = new Produto($nome, $valor);
}
public function getNome() {
return $this->nome;
}
public function setNome($nome) {
$this->nome = $nome;
}
public function getValor() {
return $this->valor;
}
public function setValor($valor) {
$this->valor = $valor;
}
function __toString() {
$this->nome + $this->valor;
}
Then I made the page that displays the values, in case my index.
<?php
session_start();
if(isset($_GET["acao"]) and $_GET["acao"] == "ok") {
$_SESSION["nome"] = $_POST["nome"];
$_SESSION["valor"]= $_POST["valor"];
$prod = new Produto($_SESSION["nome"], $_SESSION["valor"]);
//gostaria de conseguir concatenar aqui esses valores
echo $prod->getNome() . $prod->getValor();
}
?>
and my page to enter the values in the session.
<?php
session_start();
?>
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<div class="container">
<div class="row-fluid">
<div class="span4">
</div>
<div class="span4">
<div class="well">
<form action="index.php?acao=ok" method="post">
<fieldset>
<center><legend>Adicione um produto e seu valor</legend> </center>
<label>Descrição do produto</label>
<input class="input-xlarge" type="text" placeholder="Digite o nome do produto" name="nome" autofocus required>
<label>Valor do produto</label>
<input class="input-xlarge" type="number" placeholder="R$" name="valor" required>
</br></br>
<button type="submit" class="btn btn-primary">Salvar</button>
</fieldset>
</form>
</div>
</div>
<div class="span4">
</div>
</div>
I've tried to concatenate in some ways, but I'm a beginner in php and I can not, I've summarized the code to make it easier to read.