Thanks for any help,,,,projects are never ending....
Dont know what section of scripts to include since have no idea where problem is. So,
1 Problem: I have 2 scripts working together to verify login and/or join a member.
However, objective isnt met and I get no errors or my message displays. Logins are not verified and redirected, logins that are wrong are not displaying "retry" message. The new member section doesn't insert the member into the mysql database when data is entered and submit button clicked. The login page just refreshes. Ideas?
2 Problem: Another page seems to put computer in constant loop/freeze in middle of page. Here's a little from that. Trying to send the query results to screen first to see if working....plan to figure out how to display nicer later.
$sql = "SELECT * FROM vehicle
WHERE vehicle_base_price <= 10000.00";
$result = mysql_query($sql)
or die("couldnt execute query and id");
$num=mysql_num_rows($result);
$list=mysql_fetch_array($result);
$numdisplayed=0;
if ($num > 0) //vehicles were found
{
while ($numdisplayed <= $num) //need to keep looping thru array until all displayed in form
mysql_list_fields($list); //not right for screen display but how?
$numdisplayed++; //syntax?
}
else // vehicles were not found
{
echo "No vehicles are currently offered in this range.";
header ("location: Proj_SeeRanges.php");
}
?>