Posts by Tsh • 26 points
2 posts
-
0
votes2
answers337
viewsA: What is the Function of Error_reporting(0)
In the documentation it says yes. Example #1 Examples error_reporting() <?php //Turn off all error reporting error_reporting(0);…
-
0
votes2
answers2101
viewsA: Checking if registration already exists in the database
$search = mysql_query("SELECT * FROM clientes WHERE cnpj = '$cnpj'"); if(@mysql_num_rows($search) > 0){ echo ' <script type="text/javascript"> alert("Esse Cliente já…