В частности, если я хочу получить и по электронной почте, имя пользователя, имя, пароль от моих пользователей
if ($fullname !="") {
// if(ctype_alpha($fullname)){
if (strlen($fullname) > 2) {
if ($email !="") {
if (filter_var($email,FILTER_VALIDATE_EMAIL)) {
if ($password !="") {
if (strlen($password) > 5) {
if($confirm_password !=""){
if ($confirm_password ===$password) {
//$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
$sql="INSERT INTO imarket_users(full_name,email,passwords) VALUE('$fullname','$email','$password')";
mysqli_query($connection,$sql);
if (mysqli_affected_rows($connection)) {
include('success.php');
}