> For the complete documentation index, see [llms.txt](https://javascriptuse.gitbook.io/javascript/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://javascriptuse.gitbook.io/javascript/truyen-du-lieu-tu-javascript-sang-php/tu.md).

# Truyền giá trị theo file bằng đường dẫn (ok)

```markup
<!DOCTYPE html>
<html>
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <meta name="language" content="vietnamese">
    <meta property="og:locale" content="vi_VN">
        <meta name="google-site-verification" content="PuA4RXn1IGZbiglCjRvzLUPAKPYw6amIu79SJHmavlQ">
    <meta name="theme-color" content="#13b5ea">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <meta name="language" content="vn">
    <meta name="keywords" content="học trực tuyến, học online">
    <title>*Client Info*</title>
    <style>table,tr{border:2px solid gold;border-collapse:collapse;}td{padding:5px;}</style>
</head>

<body>
<script>
    var sWidth = window.screen.width;
    alert("sWidth is: " + sWidth);
    var xhttp = new XMLHttpRequest();
    var url = "scss/index.php?width=" + sWidth;
    xhttp.open("GET", url, true);
    xhttp.onload = function() { 
        alert("Result: " + xhttp.responseText); 
    };
    xhttp.send(null);
</script>
</body>
</html>
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://javascriptuse.gitbook.io/javascript/truyen-du-lieu-tu-javascript-sang-php/tu.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
