Find this useful? Enter your email to receive occasional updates for securing PHP code.

Signing you up...

Thank you for signing up!

PHP Decode

<div class="my-3 space-y-3 text-black"> <div> <select class="w-[180px]" wire:m..

Decoded Output download

<?  <div class="my-3 space-y-3 text-black">
    <div>
        <select class="w-[180px]" wire:model="ruleType">
            @foreach([
                ['name' => 'Rows',  'value' => 'rows'],
                    ['name' => 'Buttons', 'value' => 'buttons'],
                    ['name' => 'Checkbox', 'value' => 'checkbox'],
                    ['name' => 'Radio', 'value' => 'radio'],
                ] as $option)
                <option value="{{ $option['value'] }}">{{ $option['name'] }}</option>
            @endforeach
        </select>
    </div>

    <div>
        <textarea data-cy="dynamic-rules" wire:model="dynamicRules"></textarea>
    </div>

    <button data-cy="apply-rules" x-on:click="$wire.set('applyRules', true)">Apply Rules</button>
</div>
 ?>

Did this file decode correctly?

Original Code

<div class="my-3 space-y-3 text-black">
    <div>
        <select class="w-[180px]" wire:model="ruleType">
            @foreach([
                ['name' => 'Rows',  'value' => 'rows'],
                    ['name' => 'Buttons', 'value' => 'buttons'],
                    ['name' => 'Checkbox', 'value' => 'checkbox'],
                    ['name' => 'Radio', 'value' => 'radio'],
                ] as $option)
                <option value="{{ $option['value'] }}">{{ $option['name'] }}</option>
            @endforeach
        </select>
    </div>

    <div>
        <textarea data-cy="dynamic-rules" wire:model="dynamicRules"></textarea>
    </div>

    <button data-cy="apply-rules" x-on:click="$wire.set('applyRules', true)">Apply Rules</button>
</div>

Function Calls

None

Variables

None

Stats

MD5 2df8bc1fb3c7b1d61afe818f08c644f7
Eval Count 0
Decode Time 93 ms