Jump to content

WHAT IS WRONG HERE!!!


dave456

Recommended Posts

AHH! I am riping my hair out!

 

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Edit my Garage</title>
</head>

<body>
<form action="insert_garage.php" method="POST">
   	<p>What do you call your garage? 
   	    <input type="text" name="Name" />
        <br/>
        What size is your garage? (1 car, 2 car, etc) 
        <input name="Size" type="text" />
        <br/>
        Location? (Oshkosh, WI) 
        <input name="Location" type="text" />
        <br/>
        Info:
        <br/>
      <textarea name="" cols="50" rows="10">Enter a breif discription here!</textarea>
	<br/>
        <input type="submit" />
</form>
</body>
</html>

 

And Insert_garage.php looks like...

 

<?php
$con = mysql_connect("localhost","*****","******");
if (!$con)
  {
  die('Could not connect: ' . mysql_error());
  }
mysql_select_db("****_****", $con);

$sql="INSERT INTO Garage (Name, Size, Location, Info)
VALUES
('$_POST[Name]','$_POST[size]','$_POST[Location]','$_POST[info])";if (!mysql_query($sql,$con))
  {
  die('Error: ' . mysql_error());
  }
echo "You Garage Page has been updated";mysql_close($con)
?>

 

I get an error that line three of Insert_garage.php isnt right? Whats wrong? Thanks alot

Link to comment
Share on other sites

whats the error message you get?

 

also you could just do:

 

$con = mysql_connect("localhost","*****","******") or die('Could not connect: ' . mysql_error());

 

and leave out the whole if statement

 

 

OH, and you're missing a ; at the very end - after mysql_close($con);

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.