Expediente

Conheça a equipe que está trabalhando duro para oferecer o melhor conteúdo sobre fisiculturismo e afins para você!

Fundadores:

Reginaldo Gurgel - Diretor de Negócios e Marketing

Joelson Esteves - Diretor de Criação e Projetos

Administradores / Colaboradores:

<% set cnn = server.createobject("adodb.connection") cnn.open strConn '## Forum_SQL strSql = "SELECT F_MEMBERS.MEMBER_ID, F_MEMBERS.M_NAME, F_MEMBERS.M_FIRSTNAME + ' ' + F_MEMBERS.M_LASTNAME AS NOME " strSql = strSql & " FROM F_MEMBERS " strSql = strSql & " WHERE F_MEMBERS.M_LEVEL = 3 " strSql = strSql & " AND F_MEMBERS.M_STATUS = " & 1 strSql = strSql & " ORDER BY F_MEMBERS.M_NAME ASC;" set rs = cnn.Execute(strSql) response.Write("

") do until rs.EOF response.write "" & rs("M_NAME") & " - " & rs("NOME") & " 
" rs.MoveNext loop response.Write("

") rs.close set rs = nothing response.write "

Moderadores:

" '## Forum_SQL strSql = "SELECT F_MEMBERS.MEMBER_ID, F_MEMBERS.M_NAME, F_MEMBERS.M_FIRSTNAME + ' ' + F_MEMBERS.M_LASTNAME AS NOME " strSql = strSql & " FROM F_MEMBERS " strSql = strSql & " WHERE F_MEMBERS.M_LEVEL = 2 " strSql = strSql & " AND F_MEMBERS.M_STATUS = " & 1 strSql = strSql & " ORDER BY F_MEMBERS.M_NAME ASC;" set rs = cnn.Execute(strSql) response.write "

" do until rs.EOF response.write "" & rs("M_NAME") & " - " & rs("NOME") & " 
" rs.MoveNext loop response.Write "

" rs.close set rs = nothing cnn.close set cnn = nothing %>