Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<select disabled class="form-select form-control p_sold_by_id form-p-sold-by-id form-remo..
Decoded Output download
<? <select disabled class="form-select form-control p_sold_by_id form-p-sold-by-id form-remove-border" id="p_sold_by_id_1" name="p_sold_by_id[]" rel="{{$productLoopCount}}">
<option value="">Select</option>
@foreach($staffUser as $value)
@if(!empty($buyproduct['p_sold_by_id']))
@if($buyproduct['p_sold_by_id']==$value->user_id)
@php $selected = "selected"; @endphp
@else
@php $selected = ""; @endphp
@endif
@endif
<option value="{{$value->user_id}}" {{$selected}}>{{base64_decode($value->name)}}</option>
@endforeach
</select> ?>
Did this file decode correctly?
Original Code
<select disabled class="form-select form-control p_sold_by_id form-p-sold-by-id form-remove-border" id="p_sold_by_id_1" name="p_sold_by_id[]" rel="{{$productLoopCount}}">
<option value="">Select</option>
@foreach($staffUser as $value)
@if(!empty($buyproduct['p_sold_by_id']))
@if($buyproduct['p_sold_by_id']==$value->user_id)
@php $selected = "selected"; @endphp
@else
@php $selected = ""; @endphp
@endif
@endif
<option value="{{$value->user_id}}" {{$selected}}>{{base64_decode($value->name)}}</option>
@endforeach
</select>
Function Calls
None |
Stats
MD5 | 8365da3eb31333101f8c50e8eaa7183c |
Eval Count | 0 |
Decode Time | 49 ms |