PHP not working on the website

0

My php does not work on my linux server of aws ec2.

http://3.77.54.254/ any idea?

<?php echo "This a boar detector device"; $varboars = $_GET['boars']; //$varboars = 4; $filecontent = "The boars that trapped ".$varboars; $filestatus = file_put_contents( 'TimesVisitedForBoars.txt', $filecontent, FILE_APPEND ); echo" THISIS VISIBLE"; if( $filestatus != false ) { echo"Succes****************************** you hunt boars"; } else { echo"No succes you dont hunt boars"; } $filename = "TimesVisitedForBoars.txt"; $handle = fopen($filename, "r"); $BoarsVisited = fread($handle, filesize($filename)); echo "Boards that hit the floor are After writting".$BoarsVisited; fclose($handle); ?>
Ferran
gefragt vor einem Jahr188 Aufrufe
1 Antwort
0

Hi there!

Have you tried the guide in the AWS Documentation?

I hope this helps.

profile pictureAWS
EXPERTE
beantwortet vor einem Jahr

Du bist nicht angemeldet. Anmelden um eine Antwort zu veröffentlichen.

Eine gute Antwort beantwortet die Frage klar, gibt konstruktives Feedback und fördert die berufliche Weiterentwicklung des Fragenstellers.

Richtlinien für die Beantwortung von Fragen