hey guys,
I have a little problem that been haunting me for the past two days.
When I print out the data in the form it prints out the correct data, but when I check the database, there's no information, but it does insert a new entry. What gives? Any help would be greatly appreciated.
-FOX
I have a little problem that been haunting me for the past two days.
Code:
//Get data from form
$Client1=$_POST['Client'];
$Number1=$_POST['Number'];
$Issue1=$_POST['Issue'];
$Status1=$_POST['Status'];
$Charge1=$_POST['Charge'];
$Parts1=$_POST['Parts'];
//Insert new data into inprogress
mysql_query("INSERT INTO new (Client,Number,Job,Status,Charge,Expense)VALUES('$Client1','$Number1','$Issue1','$Status1','$Charge1','$Parts1')");
mysql_close();
-FOX
Comment