Posts by drd0sPy • 29 points
2 posts
-
-2
votes1
answer37
viewsQ: PHP Magic methods and Security
I’m in the middle of a programming challenge and I just needed a path to follow the code I have to review : <?php require_once( "settings.php" ); class Database{ function __construct(){…
-
3
votes1
answer144
viewsQ: Program does not compile with miscellaneous errors
What’s wrong here? I can’t see the error. #include <stdio.h> void Main(void) { int a = 9; int b = 3; int c = 0; int *p = &b; c = a/*p; printf("%d \n", c); }…