Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #20.4K
~5K People Reached
Favorite Forums
Favorite Tags

4 Posted Topics

Member Avatar for andydeans

yep, using 1 database is best otherwise you'd be synchronising the whole time

Member Avatar for hielo
0
125
Member Avatar for braveheart_sb
Member Avatar for DanielTulp
0
3K
Member Avatar for hmhb.in

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 …

Member Avatar for DanielTulp
0
105
Member Avatar for praveen_dusari

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]

Member Avatar for DanielTulp
0
854

The End.