i'm currently doing a registration form that writes to myPHP database.
It updates grand but it makes an empty entry in the database as well-= this is starting to fry my head so if anyone could help it'd be pretty good
<?php
//update database
mysql_connect ('online.ulst.ac.uk', 'ltsn','ics' );
mysql_select_db (ltsn);
mysql_query ("INSERT INTO italics (title, name, sname, pos, dept, inst, address, city, country, postcode, phone, fax, email, url, teach_area, review_paper, mail_list, comp_sci, ILS, edu_dev) VALUES ('$title', '$name', '$sname', '$pos', '$dept', '$inst', '$address', '$city', '$country', '$postcode', '$phone', '$fax', '$email', '$url', '$teach_area', '$review_paper', '$mail_list', '$comp_sci', '$ILS', '$edu_dev') ");
?>