Advertisement

Fractal Figurations

{shortcode-737c4c68ed9ad092687c2af2b52d79bc604f8440}

a single line births infinities of commands

<label for="take-it-back">Take it BACK.</label><br>
<input name="take-it-back" id="take-it-back">(1)

There’s something distinctly voyeuristic about watching the ocean move, the waves lap at the shore in a show of intimacy beyond what I am capable. There is no melancholia, no pain, no hesitance, no lingering in the phasing of the moon. Only utter, irrevocable certainty of the same sort as a funeral, the type that lifts a veil to drop a blade and passes in cycles, like the function of a rotational movement or some other intractable law of the physical universe. Somewhere there is an eclipse and simultaneous waning, which happens at once all at once and not unlike menstruation in its motion which is all sudden convulsions and gradual aches. Yesterday you said the sea was like a phantom and look, there is the pacific.

file_uploads = On

<!DOCTYPE html>
<html>
<body>

<form action="upload.php" method="post" enctype="multipart/form-data">
    Select image to upload:
    <input type="file" name="fileToUpload" id="fileToUpload">
    <input type="submit" value="Upload Image" name="submit">
</form>

</body>
</html>

<?php
$target_dir = "uploads/";
$target_file = $target_dir . basename($_FILES["fileToUpload"]["name"]);
$uploadOk = 1;
$imageFileType = strtolower(pathinfo($target_file,PATHINFO_EXTENSION));
// Check if image file is an actual image or fake image
if(isset($_POST["submit"])) {
    $check = getimagesize($_FILES["fileToUpload"]["tmp_name"]);
    if($check !== false) {
        echo "File is an image - " . $check["mime"] . ".";
        $uploadOk = 1;
    } else {
        echo "File is not an image.";
        $uploadOk = 0;
    }
}
?>

// Allow certain file formats
if($imageFileType != "silences" && $imageFileType != "in the form of" && $imageFileType != "bitterness"
&& $imageFileType != "bitten tongues ) {
    echo "Sorry, only silences, in the form of, sunflower seeds & bitten tongues are allowed.";
    $uploadOk = 0;
}(2)

(1) Sourced from https://html.com/tags/label/

(2) Sourced from https://www.w3schools.com/php/php_file_upload.asp

Advertisement

—Contributing writer Kelsey Chen’s column, “Body Language,” is a creative column combining visual arts and creative writing to explore the body as a medium of political expression.

Tags

Advertisement