Gossamer Forum
Home : Products : Gossamer Links : Discussions :

external varialble to linksql

Quote Reply
external varialble to linksql
   

i wonder if any one before aksed below question.

when run 'add.cgi?d=1 ' to added a new link, the programe will bring

me a include_form.html for entering data.



my questions what if i run 'add.cgi?d=1&para1=value1&para2=value2 ,

and make the value1 and value2 auto filled in field of para1 and para2 in 1nclude_form.html

(para1 and para2 is defined in linksql)

i have search the forum using keywords external variable or outside variable and ended in vain.

could someone could point me if this is possbile.



Thanks
Quote Reply
Re: [courierb] external varialble to linksql In reply to
add.cgi?d=1&value=testing

...would give you a <%value%> tag, which would hold the value of 'testing'. LSQL's template parser will pick up any values thrown at it via POST, so you can basically send as much info as you want via the query string, which would give you those tags in the template.

Cheers

Andy (mod)
andy@ultranerds.co.uk
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package | GLinks ULTRA Package PRO
Links SQL Plugins | Website Design and SEO | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!
Quote Reply
Re: [Andy] external varialble to linksql In reply to
wonderful.



Thanks