hey there! my first post!, i am creating an addlink manager,
http://pastebin.com/u/intrin
here are the pastes, start with links.php
i am not getting any errors, and when i goto New, and fill out form for a new link, it just reloads the form
also, the links.php is not displaying the database entries like id like it to. i inputed one manually for testing.
here is dump from my db table links
[CODE]
-- Database: ActionTrackChair
--
-- Table structure for table links
CREATE TABLE IF NOT EXISTS links (
linkId int(11) NOT NULL AUTO_INCREMENT,
linkName varchar(80) NOT NULL,
linkDescription varchar(80) NOT NULL,
linkAdded timestamp NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (linkId)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
--
-- Dumping data for table links
INSERT INTO links (linkId, linkName, linkDescription, linkAdded) VALUES
(1, 'test1', 'www.test.com', '2011-06-20 12:27:38');
[/CODE]
thanks much in advanced, i am pretty intermediate in php, and look forward to some replies as this has been driving me crazy!