i want to add a dynamic value to this string instead of the test.jpg
$xmp_parsed = ee_extract_exif_from_pscs_xmp ("test.jpg",1);
from this $row_info['filename'];
how do i do it
cheers
kevin
adding a dynamic value to a string
Moderator: General Moderators
-
kevrelland
- Forum Commoner
- Posts: 73
- Joined: Mon Jan 08, 2007 7:41 am
- aceconcepts
- DevNet Resident
- Posts: 1424
- Joined: Mon Feb 06, 2006 11:26 am
- Location: London
Set a variable equal to your row value
Now put your new variable in place of you text
Make sure your filename isn't stored as an array though!
Code: Select all
$varInfo=$row_info['filename'];Code: Select all
$xmp_parsed = ee_extract_exif_from_pscs_xmp ($varInfo,1);