Question

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
doleary22
Forum Newbie
Posts: 1
Joined: Thu Nov 18, 2010 7:40 am

Question

Post by doleary22 »

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]
Last edited by doleary22 on Sat May 03, 2014 9:12 am, edited 1 time in total.
mikosiko
Forum Regular
Posts: 757
Joined: Wed Jan 13, 2010 7:22 pm

Re: I AM SO CLOSE, BUT REQUIRE MAJOR ASSISTANCE

Post by mikosiko »

First:

Code: Select all

$dbconnection=mysqli_connect($dbhost, $dbuser, $dbpass) or die(mysqli_connect());
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
Post Reply