write -> post with populated values
-
I would like to link to the write -> post page with values that i get from a mysql table.
CREATE TABLE
wp_bookmarklets(
IDint(11) NOT NULL auto_increment,
post_titlevarchar(250) NOT NULL,
contentlongtext NOT NULL,
categoryvarchar(250) NOT NULL,
PRIMARY KEY (ID)
) ENGINE=MyISAM DEFAULT CHARSET=latin1Write now i’m using these values (except category) to populate the URLs which calls bookmarklets.php.
Any better way? i’m sure there is.
The topic ‘write -> post with populated values’ is closed to new replies.