/    Sign up×
Community /Pin to ProfileBookmark

path to database

what is the path that i have to use if i want to save my email in the database instead of a directory

[code=php]
<?php

$uploaddir = realpath (” “);
$uploadfile = $uploaddir . basename($_FILES[‘Picture1’][‘name’]);

if(!empty($_FILES[‘Picture1’]))
{
var_dump($uploaddir);

var_dump($_FILES[‘Picture1’][‘size’]);
var_dump($_FILES[‘Picture1’][‘error’]);
var_dump($_FILES[‘Picture1’][‘type’]);
var_dump($_FILES[‘Picture1’][‘name’]);

}

if (move_uploaded_file($_FILES[‘Picture1’][‘tmp_name’], $uploaddir .$_FILES[‘Picture1’][‘name’]))

{
echo(“File Uploaded”);
echo(“$uploaddir”);
echo(“$uploadfile”);
}

else

{
echo (“file no uploaded!”);
print_r($_FILES);
echo realpath(‘./’);
}
[/code]

to post a comment
PHP

2 Comments(s)

Copy linkTweet thisAlerts:
@franknuauthorNov 27.2006 — also when i upload this file i can see the file in the directory but i can't see the path on the database any help with this please, too...
Copy linkTweet thisAlerts:
@chazzyNov 27.2006 — based on your code, this is the path to the file

[code=php]
$uploaddir .$_FILES['Picture1']['name'])
[/code]
×

Success!

Help @franknu spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 5.8,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @AriseFacilitySolutions09,
tipped: article
amount: 1000 SATS,

tipper: @Yussuf4331,
tipped: article
amount: 1000 SATS,

tipper: @darkwebsites540,
tipped: article
amount: 10 SATS,
)...