Light Poster
5Jan2010,17:17   #11
isis13's Avatar
I kind of doubt that since:

Quote:
The funny part is, that though this gives a broken link (and 404 if i right click and select 'view image'), if i make anything event in netbeans (the ide hosting this code) like change some tab or something like that and then refresh the page, the image appears. This leads me to believe that the path at least is correct since nothing happens to the path. I have also verified that the images do get created in my content folder.
maybe if i am able to refresh the server at a certain time interval automatically (no idea how to though)... just a random thought..
Light Poster
14Jan2010,02:14   #12
isis13's Avatar
pleas help, this project is due for deployment in a week and this is the only bug left..
Invasive contributor
14Jan2010,13:22   #13
nimesh's Avatar
Don't know what's the problem
Skilled contributor
24Jan2010,20:12   #14
ManzZup's Avatar
Code:
function rtnVal(){
   return n + "Ia.png";
}

document.write('<img src="rtnVal()"></img>' />);
or use php much lesser code

<?php
$file = n + "Ia.png";
?>

<img src="<?php echo $file ?>" />
Skilled contributor
24Jan2010,20:13   #15
ManzZup's Avatar
HEY another thng

<img> tag DOESNT ends with another </img>
its juz <img src="" />