1
This is code on another php page I try to call the functions but give error as if the variable did not exist , someone has some idea?
<?php
$host = "host";
$port = 587;
$username= 'usuario';
$password = 'senha';
$secure = 'tls';
$from = '[email protected]';
function host()
{
return $host;
}
function port()
{
return $port;
}
function user()
{
return $username;
}
function secure()
{
return $secure;
}
function password()
{
return $password;
}
function from()
{
return $from;
}
valeuzao!!!!!!!
– user68615