avatar
Quyết Đào Xuân
0

Codes

5

Answers

Code compilers

Top answers

0
new
February-14-2022
<?php

header("HTTP/1.0 404 Not Found");
echo "PHP continues.\n";
die();
echo "Not after a die, however.\n";
0
hello worl
January-19-2022
<!DOCTYPE html>

 <html>

    <body>


 <?php

 echo "My first PHP script!";

 ?>

 

    </body>

    </html>
0
q
January-19-2022
xxxxxxxxxx 1DB::enableQueryLog();2$arr_user = DB::table('users')->select('name', 'email as user_email')->get();3dd(DB::getQueryLog());
0
2
January-17-2022
xxxxxxxxxx 1// Warning: This can be manipulated by hackers!2// If this is problematic, store the domain in a config file3​4$currentDomain = $_SERVER['SERVER_NAME'];
0
new
January-17-2022
xxxxxxxxxx 1// To get what website the user came from:2$_SERVER['HTTP_REFERER']