Liam
BU4
- Messages
- 185
- Reaction score
- 171
- Points
- 818
So all you're trying to do is insert the variable $Skype into Table Skype?
<?php
$constr = mysqli_connect("localhost", "User", "Pass", "DBNameee");
$Skype = $_POST['Skype'];
if(mysqli_connect_errno()) {
echo "errrrrrr";
}
else
{
$sql = "INSERT INTO Skype(Skype) Values('$Skype')";
$query = mysqli_query($constr, $sql);
echo "Inserted";
}
?>