J
|
Jane 2/10/2012 |
Hi, $sql = ("SELECT maps FROM CountryList WHERE CountryName='Italy'");
|
S
|
Sergej author 2/13/2012 |
Hi, the easiest way is to add CountryList table to your project, set up binary field (maps) as Imageon the 'View as' settings dialog. Then use following code in your custom event: $sql = ("SELECT maps FROM CountryList WHERE CountryName='Italy'");
|
C
|
cgphp 2/13/2012 |
$sql = "SELECT maps FROM CountryList WHERE CountryName='Italy'"; |
S
|
Sergej author 2/13/2012 |
Thank you all!!!! |