I'm trying to create a table where the table name is a parameter. Is it possible? Like this:
$result = pg_query("CREATE TABLE '$_POST[nome_arquivo_software]' (
id serial CONSTRAINT pk_'$_POST[nome_arquivo_software]' PRIMARY KEY,
nome varchar (80),
email varchar (80),
estado varchar (80),
acessos numeric
)");