Back to blog
Article

How to fix Zoho Creator URL parameters? insight

Zoho Creator URL parameters fix The Problem If you are opening a Zoho Creator Form from a third party, and it includes the query string as “?first-name=Rob”, there is no direct way to get the value of “first-name”...

AorBorC field note / Last reviewed July 9, 2026

2m
Read time
Feb
Published
How to fix Zoho Creator URL parameters?

Zoho Creator URL parameters fix

The Problem

If you are opening a Zoho Creator Form from a third party, and it includes the query string as “?first-name=Rob”, there is no direct way to get the value of “first-name” into a field in your Form. It will not work because Deluge names can’t have “-” in them.

Question posted at: https://forums.zoho.com/topic/

The Solution

There are only two places in Zoho Creator that can read URL parameters. 1. Form and 2. Pages. Both don’t accept “-” in parameter/field names. So, the optimal solution will be,

  1. Write a php file to convert “-” formatted query strings into “_” formatted query strings and open Zoho Creator Form with new query strings
  2. Host it on your server
  3. Link your hosted php file to your third party

The Php Code

I have given the php code below. You can change the Location url to your Zoho Creator Form Url

$query_string = $_SERVER['QUERY_STRING'];
parse_str($query_string, $query_array);
foreach ($query_array as $key => $value) {
$newkey = str_replace("-", "_", $key);
$query_array[$newkey] = $value;
unset($query_array[$key]);
}
header("Location:https://app.zohocreator.com/aorborctechnologies/url-params/#Form:Contact?" . http_build_query($query_array) );

Demo

Click https://aorborc.com/samples/php/demo/ and you will be redirected to our Zoho Creator Form with the formatted query strings.

Need Help?

Get in touch to discuss how we can help build, improve, or support your business systems.

Related Articles

July 7, 2026

Custom AI Assistants for Zoho: Audit Before You Automate

A practical guide to reviewing Zoho workflows before adding AI assistants, agents, and automation into live operations.

Read article

May 9, 2026

Why 2025 Is the Year of AI Agents

AI agents are graduating from demos to real business value. Here is what every leader needs to know about deploying autonomous AI in production.

Read article