[Solved] Images not loading from folder [closed]


you need to use javascript and either preload all of the images, or use AJAX and call the image to be loaded.

This is because all php is executed on the server (server side script) and needs refreshing before it is sent to the browser. use a client side script (javascript) to execute it in the browser. AJAX can be a combination. the client side script calls a server side script and then gets the response

2

solved Images not loading from folder [closed]