Posts by Southman • 51 points
2 posts
-
0
votes3
answers157
viewsA: Why does this violate Strict Standards?
The most convenient solution in this scenario would be. interface StdDate{ } abstract class SuperDate {} class SubDate extends SuperDate implements StdDate {} class Foo { public function…
-
5
votes2
answers269
viewsA: Form php takes different value than typed
You can do it like this! $name_student = isset($_POST['name-student-form'])? $_POST['name-student-form'] :''; $email_student = isset($_POST['email-student-form'])?$_POST['email-student-form']:'';…