Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function VerificaFormasPagamento($IdEmpresa, $NomeFormaPagamento) {
- $Busca = mysql_query("SELECT * FROM formas_pagamento WHERE NomeFormaPagamento = '$NomeFormaPagamento' AND empresas_idEmpresas = $IdEmpresa LIMIT 1") or die(mysql_error());
- $Resultado = mysql_num_rows($Busca);
- if ($Resultado)
- {
- return true;
- }
- return false;
- }
- VerificaFormasPagamento(1, "PagSeguro");
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement