I really dont know what wrong with this hidden variable input. They will not pass value and nothing show up in the database. Could somebody point out what wrong with it? Thanks alot for your helps.
[code]
/code]
Below is the full form
[code]<?php
mysql_connect(“localhost”, “root”, “Mylovev1@”) or die("Error connecting to database: ".mysql_error());
/*
localhost - it’s location of the mysql server, usually localhost
root - your username
third is your password
if connection fails it will stop loading the page and display an error
*/
mysql_select_db("usnailsandspa") or die(mysql_error());
/* tutorial_search is the name of database we've created */
?>
body, html { height: 100%; margin: 0; }.bg {
/* The image used */
background-image: url(“images/checkin_bg.jpg”);
/* Full height */
height: 100%;
/* Center and scale the image nicely */
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
#textboxid1
{
width: 340px;
height:24px;
font-size:14pt;
}
input[type=checkbox] {
transform: scale(1.8);
}
h2 {
font: 300 75px/1.5 ‘Pacifico’, Helvetica, sans-serif;
color: #ad0101;
text-shadow: 3px 3px 0px rgba(0,0,0,0.1), 7px 7px 0px rgba(0,0,0,0.05);
}
Gel Nails!Customer Records |
'.$row['fullname'].'   '.$row['phone'].' | '; if(($counter % $cols) == 0) { // If it's last column in each row then counter remainder will be zero echo '
What do you need done today?  Regular Pedi   Shellac Pedi   Regular Meni   Shellac Meni   Fullset   Fill   Dipping Powder   Waxing   Fix | ';
}
echo '
And this is the code for member_submit.php
[code]<?php
header(‘Location:checkin.php’);
require ‘connection.php’;
$conn = Connect();
$fullname = $conn->real_escape_string($_POST[‘fullname’]);
$phone = $conn->real_escape_string($_POST[‘phone’]);
$appointment_date = $conn->real_escape_string($_POST[‘appointment_date’]);
$technictian = $conn->real_escape_string($_POST[‘technictian’]);
$regular_pedi = $conn->real_escape_string($_POST[‘regular_pedi’]);
$regular_meni = $conn->real_escape_string($_POST[‘regular_meni’]);
$shellac_pedi = $conn->real_escape_string($_POST[‘shellac_pedi’]);
$shellac_meni = $conn->real_escape_string($_POST[‘shellac_meni’]);
$fullset = $conn->real_escape_string($_POST[‘fullset’]);
$fill = $conn->real_escape_string($_POST[‘fill’]);
$dip = $conn->real_escape_string($_POST[‘dip’]);
$wax = $conn->real_escape_string($_POST[‘wax’]);
$fix = $conn->real_escape_string($_POST[‘fix’]);
$success = $conn->query($query);
$query2 = “INSERT INTO services (fullname, phone, appointment_date, technictian, regular_pedi, shellac_pedi, regular_meni, shellac_meni, fullset, fill, dip, wax, fix) VALUES(’” . $fullname . “’,’” . $phone . “’,’” . $appointment_date . “’,’” . $technictian . “’,’” . $regular_pedi . “’,’” . $shellac_pedi . “’,’” . $regular_meni . “’,’” . $shellac_meni . “’,’” . $fullset . “’,’” . $fill . “’,’” . $dip . “’,’” . $wax . “’,’” . $fix . “’)”;
mysql_query($query2);
$success = $conn->query($query2);
if (!$success) {
die("Couldn’t enter data: ".$conn->error);
}
echo "Thank You For Contacting Us
";
$conn->close();
?>/code][/code]