td{font-size:36;color:Black;background-color:tan; text-align:center;border: 4px solid black;}
th{font-size:18;color:Black;background-color:gray;text-align:center;border: 4px solid black;}
</style>
<form method="POST" action="xxx_xxx.php">
<table border>
<tr>
<td colspan="13"> xxx </td>
</tr>
n>
</tr>
<tr><th colspan="13" align=center><input type="submit" name="s" value="Submit"</th></tr>
</table>
</form>
</head>
</html>
<?
}[/syntax]
Question
Moderator: General Moderators
Re: I AM SO CLOSE, BUT REQUIRE MAJOR ASSISTANCE
First:
die(mysqli_connect()) ??? maybe you mean die(mysqli_error());
you are not getting nothing because more than likely your SELECT is not retrieving any row or is faulty...
suggestions:
- echo your variables ($Make, $Model, $Year, $Color, $Price ) before your SELECT and look if they are consistent with the values that you have in the DB for that columns.... $Mileage and $Price caught my attention
Code: Select all
$dbconnection=mysqli_connect($dbhost, $dbuser, $dbpass) or die(mysqli_connect());you are not getting nothing because more than likely your SELECT is not retrieving any row or is faulty...
suggestions:
- echo your variables ($Make, $Model, $Year, $Color, $Price ) before your SELECT and look if they are consistent with the values that you have in the DB for that columns.... $Mileage and $Price caught my attention