> ## Documentation Index
> Fetch the complete documentation index at: https://clickhouse.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

> توثيق لتنسيق Form

# Form

| المدخلات | المخرجات | الاسم المستعار |
| -------- | -------- | -------------- |
| ✔        | ✗        |                |

<div id="description">
  ## الوصف
</div>

يمكن استخدام التنسيق `Form` لقراءة سجل واحد بتنسيق `application/x-www-form-urlencoded`،
حيث تُنسَّق البيانات بالشكل `key1=value1&key2=value2`.

<div id="example-usage">
  ## مثال للاستخدام
</div>

لنفترض وجود ملف `data.tmp` في المسار `user_files` يحتوي على بعض البيانات المُرمَّزة بتنسيق URL:

```text title="data.tmp" theme={null}
t_page=116&c.e=ls7xfkpm&c.tti.m=raf&rt.start=navigation&rt.bmr=390%2C11%2C10
```

```sql title="Query" theme={null}
SELECT * FROM file(data.tmp, Form) FORMAT vertical;
```

```response title="Response" theme={null}
Row 1:
──────
t_page:   116
c.e:      ls7xfkpm
c.tti.m:  raf
rt.start: navigation
rt.bmr:   390,11,10
```

<div id="format-settings">
  ## إعدادات التنسيق
</div>
