Script URL:
Version of script:
Hosting company:
URL of phpinfo.php:
URL of session_test.php:
What terms did you try when SEARCHING for a solution:
Write your message below:
When I want to make a direct link on my website. As customers can tap to create a case.
(Have I inserted the following link: http://rma.it-webshop.dk/index.php?a=add)
But when I click on the link, it opens the page: http://rma.it-webshop.dk/index.php
What is the error?
Jones
Direct link to created a case.
Moderator: mkoch227
Re: Direct link to created a case.
Your link works fine for me?
Also, you are using a HESK mod that is not officially supported by me, so you should contact the mod author for any problems related with that mod.
Also, you are using a HESK mod that is not officially supported by me, so you should contact the mod author for any problems related with that mod.
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here 
You should follow me on Twitter here
Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools


Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools
Re: Direct link to created a case.
Your link works fine for me as well, so it is not a NuMods-related issue.
Mike, Lead Developer of
HESK: A surprisingly simple, user-friendly and FREE help desk software with integrated knowledgebase.
Re: Direct link to created a case.
Hello Klemen & Mike,
I have made a button with html link on my website .: http://it-webshop.dk/retur
The link at the bottom that says: "Jeg godkender og accepter"
Where I have inserted the link: http://rma.it-webshop.dk/index.php?a=add
But it only opens the page: http://rma.it-webshop.dk/
I have made a button with html link on my website .: http://it-webshop.dk/retur
The link at the bottom that says: "Jeg godkender og accepter"
Where I have inserted the link: http://rma.it-webshop.dk/index.php?a=add
But it only opens the page: http://rma.it-webshop.dk/
Re: Direct link to created a case.
My guess is that since you're wrapping the button in a form, it's resulting in the browser stripping out everything after the ? mark. Try using this code block instead:
Code: Select all
<a href="http://rma.it-webshop.dk/index.php?a=add"><button>Jeg godkender og accepter</button></a>
Mike, Lead Developer of
HESK: A surprisingly simple, user-friendly and FREE help desk software with integrated knowledgebase.
Re: Direct link to created a case.
Hi Mike,
Thanks - it works:-)
Thanks - it works:-)