employee_profile SET MailFile= 'mail\\mhelmy'

A

Anonymous

Guest
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
 
It should work...
Code:
echo $row['MaiFile'];
Are you keeping values in an array??
because then you'll have to use this:

Code:
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??
 
Back
Top