Re: To upload images on my server
Posted: Wed Dec 03, 2014 5:29 am
This will actually not so much be a PHP issue, but more of HTML/CSS/JS issue, as you have all the information, you just need to change what code is being fed to the browser.
Look into using jQuery if you are not already, and then on their site look for code/examples on generating slideshows, then have it make that code with the data that yous seem to be properly getting from the database.
Also, if you hadn't seen or been told elsewhere, you should really abandon the mysql_ based functions, they are deprecated as of 5.5 (In upcoming versions will not be available). Look into PDO, while it is more of a learning curve to use it the correct way, it is the best choice.
Look into using jQuery if you are not already, and then on their site look for code/examples on generating slideshows, then have it make that code with the data that yous seem to be properly getting from the database.
Also, if you hadn't seen or been told elsewhere, you should really abandon the mysql_ based functions, they are deprecated as of 5.5 (In upcoming versions will not be available). Look into PDO, while it is more of a learning curve to use it the correct way, it is the best choice.