01-16-2012, 02:50 AM
http://www.supportforums.net/showthread.php?tid=302
That's a tutorial on how to create a image with PHP, note that you can save the image by calling;
All you need to do now is save the newly created image into a database if there isn't already the same one, the databse table would look like...
id
name
path
views
All you need to do next is count entries in the tale and load a random one and display it, and also update the views field...
Simple...
That's a tutorial on how to create a image with PHP, note that you can save the image by calling;
PHP Code:
imagepng($img, 'path/to/your/save/folder/image.png');
All you need to do now is save the newly created image into a database if there isn't already the same one, the databse table would look like...
id
name
path
views
All you need to do next is count entries in the tale and load a random one and display it, and also update the views field...
Simple...