<div dir="auto">Thats a CSS problem buddy. Pick up CSS beginner tutorials or a framework like Bulma or Bootstrap.</div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Fri, May 24, 2019, 5:35 PM Jim <<a href="mailto:azanorak@gmail.com">azanorak@gmail.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">I've got a php script to enable users to upload files to a server. It <br>
works, but when testing it on my android phone, I saw the text is really <br>
small. How can I make it appear larger on an android device? Here's <br>
the script.<br>
<br>
thanks<br>
<br>
<br>
<?php<br>
if (isset($_FILES['upload'])) {<br>
$uploadDir = '/var/www/uploads/'; //path you wish to store you <br>
uploaded files<br>
$uploadedFile = $uploadDir . basename($_FILES['upload']['name']);<br>
if(move_uploaded_file($_FILES['upload']['tmp_name'], <br>
$uploadedFile)) {<br>
echo 'File was uploaded successfully.';<br>
} else {<br>
echo 'There was a problem saving the uploaded file';<br>
}<br>
echo '<br/><a href="FileUpload.php">Back to Uploader</a>';<br>
} else {<br>
?><br>
<br>
<form action="upload.php" method="post" <br>
enctype="multipart/form-data"><br>
<label for="upload">File:</label><br>
<input type="file" name="upload" id="upload"><br/><br>
<input type="submit" name="submit" value="Upload"><br>
</form><br>
<?php<br>
}<br>
?><br>
<br>
---------------------------------------------------<br>
PLUG-discuss mailing list - <a href="mailto:PLUG-discuss@lists.phxlinux.org" target="_blank" rel="noreferrer">PLUG-discuss@lists.phxlinux.org</a><br>
To subscribe, unsubscribe, or to change your mail settings:<br>
<a href="https://lists.phxlinux.org/mailman/listinfo/plug-discuss" rel="noreferrer noreferrer" target="_blank">https://lists.phxlinux.org/mailman/listinfo/plug-discuss</a></blockquote></div>