Server IP : 51.89.169.208 / Your IP : 18.226.181.36 Web Server : Apache System : Linux ns3209505.ip-198-244-202.eu 4.18.0-553.27.1.el8_10.x86_64 #1 SMP Tue Nov 5 04:50:16 EST 2024 x86_64 User : yellowleaf ( 1019) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/yellowleaf/www/phpMyAdmin/templates/table/find_replace/ |
Upload File : |
<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>