nstruth2

File Write Code

Jul 14th, 2023
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.28 KB | None | 0 0
  1. <style>
  2. #wrapper {
  3.   width: 100%;
  4. }
  5. </style>
  6. <?php
  7. include 'database.php';
  8. print_r($_POST['profilePageName']);
  9. $fileName = $_POST['profilePageName'].".php";
  10. $aboutMeTextVar = $_POST['aboutMeText'];
  11. $file = fopen($fileName,"w");
  12. fwrite($file,$aboutMeTextVar);
  13. fclose($file);
  14. ?>
Advertisement
Add Comment
Please, Sign In to add comment