No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
5 Posted Topics
You could use PHPBB - [url]http://www.phpbb.com/[/url] I've only used PHPBB once - when I was in Year 8 (six years ago now - sheeesh lol) and it was very beneficial :) Hope this helps, David
Hey, I've worked with PHP and MySQL databases using forms, but I've never tried to use PHP and an MS Access database. With MySQL databases you would use the built-in functions (mysql_query(), mysql_num_rows(), mysql_fetch_array() etc.) This is only a guess, but perhaps you could use fopen() to open your database? …
Hey Millsy007, If the text box has an 'id' then you can just use a small bit of Javascript to grab the value from the textbox. For example, if your textbox was called 'my_textbox' [code] <input type="text" id="my_textbox" size="25" /> [/code] You could use the following to grab the value …
Hello all, I've recently created a new website: [url]http://www.naruto-fanbase.com[/url] and I've made it multi-lingual (12 languages in total), but I was wondering how I would go about submitting the website into each foreign search engine. Any help will be very appreciated. Just in case you need to know: The default …
[code] <style type="text/css"> body { text-align: center; } .mainDiv { margin: 0px auto; width: 600px; height: 150px; background: #FF0000; } .insideDiv { margin: 0px auto; width: 300px; height: 85px; background: #FFFF00; } </style> <div class="mainDiv"> <div class="insideDiv"> This div is in the middle of the parent div :) </div> </div> …
The End.