Windows NT KAMIDAKI 10.0 build 19045 (Windows 10) AMD64
Apache/2.4.58 (Win64) OpenSSL/3.1.3 PHP/8.3.9
Server IP : 192.168.3.16 & Your IP : 216.73.216.140
Domains :
Cant Read [ /etc/named.conf ]
User : SISTEMA
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
C: /
xampp /
phpMyAdmin /
templates /
table /
find_replace /
Delete
Unzip
Name
Size
Permission
Date
Action
index.twig
2.47
KB
-rw-rw-rw-
2023-02-07 22:26
replace_preview.twig
1.28
KB
-rw-rw-rw-
2023-02-07 22:26
Save
Rename
<form method="post" action="{{ url('/table/find-replace') }}"> {{ get_hidden_inputs(db, table) }} <input type="hidden" name="replace" value="true"> <input type="hidden" name="columnIndex" value="{{ column_index }}"> <input type="hidden" name="findString" value="{{ find }}"> <input type="hidden" name="replaceWith" value="{{ replace_with }}"> <input type="hidden" name="useRegex" value="{{ use_regex }}"> <div class="card"> <div class="card-header">{% trans 'Find and replace - preview' %}</div> <div class="card-body"> <table class="table table-striped w-auto"> <thead> <tr> <th>{% trans 'Count' %}</th> <th>{% trans 'Original string' %}</th> <th>{% trans 'Replaced string' %}</th> </tr> </thead> <tbody> {% if result is iterable %} {% for row in result %} <tr> <td class="text-end">{{ row[2] }}</td> <td>{{ row[0] }}</td> <td>{{ row[1] }}</td> </tr> {% endfor %} {% endif %} </tbody> </table> </div> <div class="card-footer"> <input class="btn btn-secondary" type="submit" name="replace" value="{% trans 'Replace' %}"> </div> </div> </form>