• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Seems simple enough, is it ?

Smolek

Diamond Member
I am looking to create a script (or if there is a premade script, I'll use that) that will allow you to enter some information and it will add it to a spot in the link and have it redirect you there.

Example

I enter this url into the script

http://www.name.com/account/don.jmp=

Then when someone calls the script up in the browser it has a box that says enter your name. Someone types in "Greg" and then are directed to

http://www.name.com/account/don.jmp=Greg

That's all it needs to do. How do I do it or what type of script name do I look for ? Thanks
 
You sure you don't want a question mark at the beginning of the query string? What language you want this in? PHP?

This should work in PHP:
<? Header("Location: http://www.name.com/account/don.jmp={$_POST['variable']}") ?>

That's the whole script. Make a page with a form that posts to that page with a textbox named variable.

I didn't test it, and it could probably be made more robust, but that's a quick and dirty answer.
 
Back
Top