skip to Main Content

Flutter controller through signup button is not sending response back to database and also not showing any response in the console too

this is the signup1.dart function which is taking controllers from signup1 to signup2 void navigateToSignup2() { if (emailController.text.isNotEmpty && fullNameController.text.isNotEmpty && phoneNumberController.text.isNotEmpty && passwordController.text.isNotEmpty) { // Passing data from Signup1 to Signup2 Navigator.push( context, MaterialPageRoute( builder: (context) => SignUp2( fullName:…

VIEW QUESTION

PHP Model Class

Does this usage make sense? Will it cause any problems later? function model($folder, $file) { global $db; if (is_file(path . 'app/models/' . $folder . '/' . $file . '.php')) { require_once(path . 'app/models/' . $folder . '/' . $file .…

VIEW QUESTION
Back To Top
Search