get current http - url as an initial value
Hi,
I've been trying for over a year in Zoho to get the current browser address information (current url -http) to populate "on success".
I have over 200 subdomains with 14 forms per, and want to know which "subdomain.domain" (browser address) the form was filled out from. In my case, I don't need to "get" the "/abc.html". Just [subdomain.domain].
As it stands, I'll need to build and track 2800 forms to accomplish this (or become a perl, java, php expert)
I used to use Godaddy's "Easy Database". It had a simple drop down menu to select this function.
It's been 5 years that people have been asking for this basic functionality. Why doesn't ZOHO have this as a "ZOHO function" like [input.timestamp = zoho.currenttime ;]
In this case [input.url = zoho.currenturl ;], or [input.http = zoho.currenthttp ;], or [input.XYZ = XYZ.currentXYZ ;]
Or instructions for a workaround when I select the call function,"Get URL"
Or at least a deluge example.
Once again, this is a basic function in competing "form builders" because its a no-brainer crucial piece of form information (right up there with "first name", "last name").
Zoho has excellent programmers and decent instuctions/examples. Why don't you have this yet?
Can I edit the parameters of this call function to make it work? Knowing the url is NOT static
<variable> = Geturl(
http://www.zoho.com ) , <header peram> , <is detailed>);
(I can hard-code the [subdomain.domain] into the header html of the individual pages if this can help solve the problem. In this case it would call on the page code, instead of the "browswer url".)
Below is part of the work around php code I include in a non-zoho "pre-form" that opens up the zoho form. (Unfortunately its double form entries for the user and is inevitably a poor user interface. This is why I need the "current url / http" to come in on the ZOHO form.
function submitQBP250RebateData(){
$url=parse_url($_SERVER['HTTP_REFERER']);
Can anyone give advice please.