I need an if statement that if a table exists it will say one thing and if it doesn't exist it will say something else.
sorta like this (just replacing the capitalized stuff)
if(*TABLE EXISTS){
echo "table already exists";
}
else{
echo "Table doesn't exist";
}
Also I need another if statement that if $move is not equal to either $user[5] , $user[6], or $user[7] then it'll say something.
($move has to be equal to at least one of them)