Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <style>
- #wrapper {
- width: 100%;
- }
- </style>
- <?php
- include 'database.php';
- print_r($_POST['profilePageName']);
- $fileName = $_POST['profilePageName'].".php";
- $aboutMeTextVar = $_POST['aboutMeText'];
- $file = fopen($fileName,"w");
- fwrite($file,$aboutMeTextVar);
- fclose($file);
- ?>
Advertisement
Add Comment
Please, Sign In to add comment