Added URL-display on file-submit page
This commit is contained in:
parent
52668f35d4
commit
8373023f1c
2
beam.php
2
beam.php
|
@ -19,8 +19,6 @@ if (!empty($_POST["desired_filename"]))
|
||||||
PATHINFO_EXTENSION));
|
PATHINFO_EXTENSION));
|
||||||
}
|
}
|
||||||
|
|
||||||
echo($file_name);
|
|
||||||
|
|
||||||
$beaming_permitted = 0;
|
$beaming_permitted = 0;
|
||||||
}
|
}
|
||||||
else if (!empty($_FILES["fileToUpload"]["name"]))
|
else if (!empty($_FILES["fileToUpload"]["name"]))
|
||||||
|
|
20
lib.php
20
lib.php
|
@ -88,6 +88,25 @@ function url_to_filename($url)
|
||||||
return $filename;
|
return $filename;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function get_cwd($url)
|
||||||
|
{
|
||||||
|
$url_array = (explode("/", $url));
|
||||||
|
|
||||||
|
if (end($url_array))
|
||||||
|
{
|
||||||
|
$parts = count($url_array);
|
||||||
|
|
||||||
|
$url = implode(array_splice($url_array, 1, $parts - 2));
|
||||||
|
|
||||||
|
return $url;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
return $url;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
function celebrate($dest_file, $item_type, $image_url, $image_alt, $meta_data = false)
|
function celebrate($dest_file, $item_type, $image_url, $image_alt, $meta_data = false)
|
||||||
{
|
{
|
||||||
|
|
||||||
|
@ -100,6 +119,7 @@ function celebrate($dest_file, $item_type, $image_url, $image_alt, $meta_data =
|
||||||
|
|
||||||
<p>Your <?php echo($item_type); ?>'s
|
<p>Your <?php echo($item_type); ?>'s
|
||||||
<a href="<?php echo ($dest_file); ?>">over here</a></p>
|
<a href="<?php echo ($dest_file); ?>">over here</a></p>
|
||||||
|
<p><b><?php echo("https://" . get_cwd($_SERVER["REQUEST_URI"]) . "/" . $dest_file); ?></b></p>
|
||||||
<?php
|
<?php
|
||||||
if ($meta_data)
|
if ($meta_data)
|
||||||
{
|
{
|
||||||
|
|
Ŝarĝante…
Reference in New Issue