I cannot view the mailfile, even stripslahes and addslashes..
How to view the MailFile?
$shortName = $row['ShortName'];
$serverAddress = $row['ServerAddress'];
$mailFile = $row['MaiFile'];
echo $mailFile;
Nothing came out ...PLS help
employee_profile SET MailFile= 'mail\\mhelmy'
Moderators: egami, macek, gesf
- Joan Garnet
- Moderator
- Posts: 387
- Joined: Sat Aug 03, 2002 2:56 am
- Location: Mars
- Contact:
It should work...
Are you keeping values in an array??
because then you'll have to use this:
Does it help??
Code: Select all
echo $row['MaiFile'];
Are you keeping values in an array??
because then you'll have to use this:
Code: Select all
while ($row=mysql_fetch_array($result)){
$shortName[] = $row['ShortName'];
$serverAddress[] = $row['ServerAddress'];
$mailFile[] = $row['MaiFile'];
}
echo "<pre>";
print_r ($mailFile);
echo "</pre>";
Does it help??