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
(
ID
int(11) NOT NULL auto_increment,
post_title
varchar(250) NOT NULL,
content
longtext NOT NULL,
category
varchar(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.