⚝
One Hat Cyber Team
⚝
Your IP:
216.73.217.37
Server IP:
15.235.14.176
Server:
Linux server2.ihostph.com 4.18.0-553.30.1.el8_10.x86_64 #1 SMP Tue Nov 26 02:30:26 EST 2024 x86_64
Server Software:
Apache
PHP Version:
8.1.34
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
gracious
/
verification.graciousphils.com
/
View File Name :
deletedcodes-loadlclrtexts.txt
<?php $st = $pdo->prepare("select * from tbltextpool where (message like '%#LC%' or message like '%#PPS%' or message like '%#LR%') and processedBy = ? and status != 'Completed'"); $st->bindParam(1,$_SESSION['user']); $st->execute(); if($st->rowCount()>0){ ?> <div class="row mb-2"> <div class="col-lg-12"> <div class = "form-floating"> <select name="textMessage" id="floatingTextMessage"class="form-select"> <option selected value="NONE">NONE</option> <?php while ($data = $st->fetch()) { ?> <option value="<?php echo $data['text_id']; ?>"><?php echo $data['message'] ?></option> <?php } ?> </select> <label for="floatingTextMessage">Text Message</label> </div> </div> </div> <?php } else{ ?> <input type="hidden" name="textMessage" value="0"> <?php } ?>