The main issue I saw on your bookmarklet was it pointed to index.php?show=add
which wont work on the SEF version... it should be directory/add.html?blah=blah..
Anyways, I found the most recent contribution and did a couple of quick touch ups.
You can use the
bookmarklet creator here, after making a quick edit to your include/add.php file (which you've already done if you used the previous version)
From the script directions ...
QUOTE:
in Dew-NewPHPLinks "/include/add.php" lines ~12-24
starting with "$SiteName=mysql_escape_string($_POST['SiteName']);"...
ending with ..."$submit_add=$_POST['submit_add'];"
replace with:
"
$SiteName=mysql_escape_string($_REQUEST['SiteName']);
$SiteURL=mysql_escape_string($_REQUEST['SiteURL']);
$RecipURL=mysql_escape_string($_REQUEST['RecipURL']);
$Description=mysql_escape_string($_REQUEST['Description']);
$Category=mysql_escape_string($_REQUEST['Category']);
$Country=mysql_escape_string($_REQUEST['Country']);
$UserName=mysql_escape_string($_REQUEST['UserName']);
$PW=mysql_escape_string($_REQUEST['PW']);
$PID=mysql_escape_string($_REQUEST['PID']);
$PW2=mysql_escape_string($_REQUEST['PW2']);
$Hint=mysql_escape_string($_REQUEST['Hint']);
$Email=mysql_escape_string($_REQUEST['Email']);
$submit_add=$_REQUEST['submit_add'];
Coders interested in continuing development on this 3rd party contribution can
download the code here.