Skip to main content
2 of 2
added 3 characters in body
Shafiqul Islam
  • 5.7k
  • 2
  • 36
  • 45

use isset()

$avatar = isset($_POST['_ava']) ? $_POST['_ava'] : null; $usr_skill = isset($_POST['_skill']) ? $_POST['_skill'] : null; 

and same other post value . hope it will help you

for more information

http://php.net/manual/en/function.isset.php

Shafiqul Islam
  • 5.7k
  • 2
  • 36
  • 45