Skip to main content

why does my .PHP produced .html work only after being pasted into another .html file? [closed]


Summary: https://www.lootjeapp.nl/Lootje/producedAndSavedByPHPAndSomethingWrong.html is what my .php file created, and it is not displayed right.

However, when I copy it's source code and put it into a new .html file, it works like a charm: https://www.Lootjeapp.nl/Lootje/sourceOfErroredPage.html

Everything looks fine, and apparently it's source code is fine so Why won't the original work?


I created a .php page that can take a $POST request and then creates a brand new .html page according to the variables received.

<?php


$onderwerp = $_POST['onderwerp'];
$Speler1 = $_POST['Speler1'];
$Speler2 = $_POST['Speler2'];
$string1 = "  background-image: url('https://www.lootjeapp.nl/forestbridge.jpg');";


//We use the input to create a new page 
    
$newPage="../../Lootje/$onderwerp$Speler1$Speler2.html";

//Maybe naming the page this way creates a problem for browsers to fully recognise it as html

$fh = fopen($newPage, 'w'); 


//below writes the html code for the new page 
fwrite($fh,"<!DOCTYPE html>\n");
fwrite($fh,"<html>\n");
fwrite($fh,"<title>W3.CSS Template</title>\n");
fwrite($fh,'<meta charset="UTF-8">');
fwrite($fh,'<meta name="viewport" content="width=device-width, initial-scale=1">');
fwrite($fh,'<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">');
fwrite($fh,'<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Raleway">');
fwrite($fh,'<style>');
fwrite($fh,'body,h1 {font-family: "Raleway", sans-serif}');
fwrite($fh,'body, html {height: 100%}');
fwrite($fh,'.bgimg {');



//the fwrite syntax had a problem because the syntax for the background image file was seen as closing the argument, hence the $string1 introduction
fwrite($fh,$string1);
fwrite("\n");


fwrite($fh,'  min-height: 100%;');
fwrite($fh,'  background-position: center;');
fwrite($fh,'  background-size: cover;');


fwrite($fh,"\n}");

fwrite($fh,'</style>');
fwrite($fh,'<body>');
fwrite($fh,"\n");

fwrite($fh,'<div class="bgimg w3-display-container w3-animate-opacity w3-text-white">');
fwrite($fh,'  <div class="w3-display-topleft w3-padding-large w3-xlarge">');
fwrite($fh,"\n    Logo");
fwrite($fh,"\n </div>\n");

fwrite($fh,'  <div class="w3-display-middle">');
fwrite($fh,'    <h1 class="w3-jumbo w3-animate-top">LOOTJE</h1>');
fwrite($fh,'    <hr class="w3-border-grey" style="margin:auto;width:40%">');
fwrite($fh,'    <p class="w3-large w3-center">35 days left</p>');

fwrite($fh,'  </div>');
fwrite($fh,'  <div class="w3-display-bottomleft w3-padding-large">');
fwrite($fh,'    Powered by <a href="https://www.w3schools.com/w3css/default.asp" target="_blank">w3.css</a>');

fwrite($fh,'  </div>');
fwrite($fh,'</div>');
fwrite($fh,'</body>');
fwrite($fh,'</html>');


fclose($fh);
?>

The good news is that the new .html file does get created and the syntax is exactly what it should be. (although it looks ugly)

<!DOCTYPE html>
<html>
<title>W3.CSS Template</title>
<meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1"><link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css"><link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Raleway"><style>body,h1 {font-family: "Raleway", sans-serif}body, html {height: 100%}.bgimg {  background-image: url('https://www.lootjeapp.nl/forestbridge.jpg');  min-height: 100%;  background-position: center;  background-size: cover;
}</style><body>
<div class="bgimg w3-display-container w3-animate-opacity w3-text-white">  <div class="w3-display-topleft w3-padding-large w3-xlarge">
    Logo
 </div>
  <div class="w3-display-middle">    <h1 class="w3-jumbo w3-animate-top">LOOTJE</h1>    <hr class="w3-border-grey" style="margin:auto;width:40%">    <p class="w3-large w3-center">35 days left</p>  </div>  <div class="w3-display-bottomleft w3-padding-large">    Powered by <a href="https://www.w3schools.com/w3css/default.asp" target="_blank">w3.css</a>  </div></div></body></html>

new file after POST requestugly but the correct html It shows up in the right folder and the code is fine.

HOWEVER when opening this new .html file in a browser the page is not loaded correctly. Obviously, some style element is mixed up. check it here https://www.lootjeapp.nl/Lootje/producedAndSavedByPHPAndSomethingWrong.html some style element seems wrong

To check its .html, I displayed the Source Code from the browser and copied it to clipboard copy the html Then I created a new empty file and pasted the code therenew file in same directory enter image description here. Opening that .html file in a browser displays the website without any problems (10)that same html is working fine here

So .PHP seems to generate very capable HTML code but there is something keeping it from working via the file that was created by fopen(). It is only after copying the source code to a new .html that it works flawlessly.

Is there anyone who can think of a reason why the originally .html created would not work?

(It concerns this site: https://www.lootjeapp.nl/Lootje/producedAndSavedByPHPAndSomethingWrong.html)



source https://stackoverflow.com/questions/68971898/why-does-my-php-produced-html-work-only-after-being-pasted-into-another-html

Comments

Popular posts from this blog

ValueError: X has 10 features, but LinearRegression is expecting 1 features as input

So, I am trying to predict the model but its throwing error like it has 10 features but it expacts only 1. So I am confused can anyone help me with it? more importantly its not working for me when my friend runs it. It works perfectly fine dose anyone know the reason about it? cv = KFold(n_splits = 10) all_loss = [] for i in range(9): # 1st for loop over polynomial orders poly_order = i X_train = make_polynomial(x, poly_order) loss_at_order = [] # initiate a set to collect loss for CV for train_index, test_index in cv.split(X_train): print('TRAIN:', train_index, 'TEST:', test_index) X_train_cv, X_test_cv = X_train[train_index], X_test[test_index] t_train_cv, t_test_cv = t[train_index], t[test_index] reg.fit(X_train_cv, t_train_cv) loss_at_order.append(np.mean((t_test_cv - reg.predict(X_test_cv))**2)) # collect loss at fold all_loss.append(np.mean(loss_at_order)) # collect loss at order plt.plot(np.log(al...

Sorting large arrays of big numeric stings

I was solving bigSorting() problem from hackerrank: Consider an array of numeric strings where each string is a positive number with anywhere from to digits. Sort the array's elements in non-decreasing, or ascending order of their integer values and return the sorted array. I know it works as follows: def bigSorting(unsorted): return sorted(unsorted, key=int) But I didnt guess this approach earlier. Initially I tried below: def bigSorting(unsorted): int_unsorted = [int(i) for i in unsorted] int_sorted = sorted(int_unsorted) return [str(i) for i in int_sorted] However, for some of the test cases, it was showing time limit exceeded. Why is it so? PS: I dont know exactly what those test cases were as hacker rank does not reveal all test cases. source https://stackoverflow.com/questions/73007397/sorting-large-arrays-of-big-numeric-stings

How to load Javascript with imported modules?

I am trying to import modules from tensorflowjs, and below is my code. test.html <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title </head> <body> <script src="https://cdn.jsdelivr.net/npm/@tensorflow/tfjs@2.0.0/dist/tf.min.js"></script> <script type="module" src="./test.js"></script> </body> </html> test.js import * as tf from "./node_modules/@tensorflow/tfjs"; import {loadGraphModel} from "./node_modules/@tensorflow/tfjs-converter"; const MODEL_URL = './model.json'; const model = await loadGraphModel(MODEL_URL); const cat = document.getElementById('cat'); model.execute(tf.browser.fromPixels(cat)); Besides, I run the server using python -m http.server in my command prompt(Windows 10), and this is the error prompt in the console log of my browser: Failed to loa...