Ok this is bugging the hell out of me. The value of $org isn't being inserted into the name field of my database.
Here's the code:
form.html
<input type=text name="org">
script.php
mysql_query("INSERT INTO organization (section,name,address,description) VALUES ('$section','$org','$street_address','$description')");
The address and name fields are exactly the same in the database.
I've been looking at this for an hour and a half - it should be working :\ Any suggestions??