Hi.
Current problem:
When an image is putted on the text area, the html code of that image will be, for example:
<img src='image/example.jpg' />
I would like to know if it's possible to have the absolute path of the image instead of the relative path. I need this, because im using the FCKeditor to send emails in html format. But since the path is relative, the image doesnt appear on the email. Where and how can i change the code to make this happen?
Hope i made this clear enough.
Thanks.
Current problem:
When an image is putted on the text area, the html code of that image will be, for example:
<img src='image/example.jpg' />
I would like to know if it's possible to have the absolute path of the image instead of the relative path. I need this, because im using the FCKeditor to send emails in html format. But since the path is relative, the image doesnt appear on the email. Where and how can i change the code to make this happen?
Hope i made this clear enough.
Thanks.

Re: Image code after submiting...
cheers
Re: Image code after submiting...
please help us!
Re: Image code after submiting...
This problem can be solved through php code:
$INCOME_VARS['textarHtmlDyn_body'] = str_replace(' src=\"/files/Image/', ' src=\"'.$SYSTEM['full_site_domain'].'/files/Image/', $INCOME_VARS['textarHtmlDyn_body']); $INCOME_VARS['textarHtmlDyn_body'] = str_replace(' src=\"../files/Image/', ' src=\"'.$SYSTEM['full_site_domain'].'/files/Image/', $INCOME_VARS['textarHtmlDyn_body']); $INCOME_VARS['textarHtmlDyn_body'] = str_replace(' src=\"/'.$SYSTEM['base_path'].'/fckeditor/editor/images/', ' src=\"'.$SYSTEM['full_site_domain'].'/'.$SYSTEM['base_path'].'/fckeditor/editor/images/', $INCOME_VARS['textarHtmlDyn_body']);