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
asked a year ago182 views
1 Answer
0

Hi there!

Have you tried the guide in the AWS Documentation?

I hope this helps.

profile pictureAWS
EXPERT
answered a year ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions