Ah. So that's the Provider's problem, right? Arrangements have to be made with the Client's Server's Keepers, as it were. I assume we need complete read/write/erase permission ...
Cool. That's business, not development. Not my problem.
Meanwhile, about those mySql references to 'result index 13' etc. If I squint hard enough I can imagine they sound like references to parking spaces near a government facility in the desert that doesn't exist. But seriously, folks, I'm ignorant enough to not understand the message. Could someone please explain it to me, or at least ask for enough clarification to allow them to comment on it?
I'll include the entire query here:
function getFont($id){
global $fRA;
$qr = 'SELECT * FROM pda_font';
$re = mysql_query($qr) or die(mysql_error());
$nrows = mysql_num_rows($re);
$fRA = array();
$fRA = array('ffile'=>mysql_result($re,$id,'fontfile'), 'fSize'=>mysql_result($re,$id,'fontsize'), 'fWrap'=>mysql_result($re,$id,'wordwrap'), 'fSplit'=>mysql_result($re,$id,'wordsplit'),'fname'=>mysql_result($re,$id,'fontname'),'fw'=>mysql_result($re,$id,'w'));
}
Frankly, I understand that this query can probably be stated better. Right now, though, I'm just interested in what 'index 13' (or '18') refers to. And I'd really like to understand that.
Thanks,
- Paul