Ik heb even een vraagje: Ik heb een PHP scriptje gemaakt waarmee je een plaatje kunt uploaden. Maar nou wil ik hier een CSS aan toevoegen. Hoe kan ik dit doen? Moet ik dat in het PHP script zetten (dan geeft hij een error) of moet ik een apart CSS-bestandje maken?
Ik heb lang met google gezocht en ook via de search maar kan hier weinig over vinden.
Mijn PHP scriptje:
CSS die ik er oa aan toe wil voegen:
En hier is ook even de link waar het scriptje draait: www.mailfreeonline.com/uploader/index.htm
Ik heb lang met google gezocht en ook via de search maar kan hier weinig over vinden.
Mijn PHP scriptje:
PHP:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
| <?php $path = "images/"; $max_size = 100000; if (!isset($HTTP_POST_FILES['userfile'])) exit; if (is_uploaded_file($HTTP_POST_FILES['userfile']['tmp_name'])) { if ($HTTP_POST_FILES['userfile']['size']>$max_size) { echo "The file is too big!<br>\n"; exit; } if (($HTTP_POST_FILES['userfile']['type']=="image/gif") || ($HTTP_POST_FILES['userfile']['type']=="image/pjpeg") || ($HTTP_POST_FILES['userfile']['type']=="image/jpeg")) { if (file_exists($path . $HTTP_POST_FILES['userfile']['name'])) { echo "The file already exists, please choose an other name!<br>\n"; exit; } $res = copy($HTTP_POST_FILES['userfile']['tmp_name'], $path . $HTTP_POST_FILES['userfile']['name']); if (!$res) { echo "Upload failed, please try again!<br>\n"; exit; } else { echo "Upload sucessful!<br>\n"; } echo "File name: <a href=images/".$HTTP_POST_FILES['userfile']['name'].">http://www.mailfreeonline.com/uploader/images/".$HTTP_POST_FILES['userfile']['name']."</a><br>\n"; echo "File size: ".$HTTP_POST_FILES['userfile']['size']." bytes<br>\n"; echo "File type: ".$HTTP_POST_FILES['userfile']['type']."<br>\n"; } else { echo "Wrong file type<br>\n"; exit; } } ?> |
CSS die ik er oa aan toe wil voegen:
HTML:
1
2
3
4
5
6
7
8
9
| <style> A:HOVER { color: #555555; text-decoration: bolder; } A { text-decoration: none; } </style> |
En hier is ook even de link waar het scriptje draait: www.mailfreeonline.com/uploader/index.htm
[ Voor 54% gewijzigd door Verwijderd op 09-02-2003 15:15 ]