<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body text="#000000" bgcolor="#FFFFFF">
<p>I need to find out where to put the added code without breaking
the script.<br>
</p>
<div class="moz-cite-prefix">On 5/24/19 5:45 PM, Andrew McRobb
wrote:<br>
</div>
<blockquote type="cite"
cite="mid:CAH1v-qgYzWotQkiKJOAqzY3wHsUR11vzGscPBO0d4pSWH-B5RA@mail.gmail.com">
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<div dir="auto">PHP has nothing to do with styling, its backend
logic. Anything display wise is HTML/CSS. When you understand
how those work, it should give a really good idea how to connect
all 3 together, just to give you some more context.</div>
<br>
<div class="gmail_quote">
<div dir="ltr" class="gmail_attr">On Fri, May 24, 2019, 5:39 PM
Andrew McRobb <<a href="mailto:andrewmcrobb@gmail.com"
moz-do-not-send="true">andrewmcrobb@gmail.com</a>> wrote:<br>
</div>
<blockquote class="gmail_quote" style="margin:0 0 0
.8ex;border-left:1px #ccc solid;padding-left:1ex">
<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"
target="_blank" rel="noreferrer" moz-do-not-send="true">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"
rel="noreferrer noreferrer" target="_blank"
moz-do-not-send="true">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 noreferrer" target="_blank"
moz-do-not-send="true">https://lists.phxlinux.org/mailman/listinfo/plug-discuss</a></blockquote>
</div>
</blockquote>
</div>
<br>
<fieldset class="mimeAttachmentHeader"></fieldset>
<pre class="moz-quote-pre" wrap="">---------------------------------------------------
PLUG-discuss mailing list - <a class="moz-txt-link-abbreviated" href="mailto:PLUG-discuss@lists.phxlinux.org">PLUG-discuss@lists.phxlinux.org</a>
To subscribe, unsubscribe, or to change your mail settings:
<a class="moz-txt-link-freetext" href="https://lists.phxlinux.org/mailman/listinfo/plug-discuss">https://lists.phxlinux.org/mailman/listinfo/plug-discuss</a></pre>
</blockquote>
</body>
</html>