problem in using database in php script

Asked By siva kumar
27-Aug-10 06:30 AM
Earn up to 0 extra points for answering this tough question.
dear friends

i created a site and sub-links in it using tabs in which the user can post a suggestion and on the other it can be viewed as a list it is working in local but not in server

pls help me what to do

sivakumar

  re: problem in using database in php script

Gayathri S replied to siva kumar
01-Sep-10 09:17 AM
If you had used any absolute links in your local development machine, then change it to relative links if it has to work everywhere.

For example: "<img src="c:\work\images\image.jpg>" will work on your local machine but not on the remote ones. So make the paths relative. For example "<img src="images/image.jpg>". The file containing this code should be in the same folder where the "images" folder resides.
Create New Account