No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
4 Posted Topics
yep, using 1 database is best otherwise you'd be synchronising the whole time
search for the sql join command and you'll probably find your answer
to display data from an xml check out these resources [url]http://www.w3schools.com/PHP/php_xml_simplexml.asp[/url] [url]http://php.net/manual/en/book.xml.php[/url] here is some sample code I use to display text (used on [url]http://photo.danieltulp.nl[/url]) [CODE] <?php $newsitems = new SimpleXMLElement('xmlfilename.xml', null, true); foreach ($newsitems as $item):?> <div class="newsitem"> <h4><?php echo $item->title?><span class="date"><?php echo $item->date?></span></h4> <p><?php echo $item->body?></p> </div> <?php …
This website gives insight into the methods available for image protection, or at least to make it harder to steal images: [url]http://www.naturefocused.com/articles/image-protection.html[/url]
The End.
DanielTulp