Forum: PHP Sep 3rd, 2008 |
| Replies: 3 Views: 760 I believe what you are looking for is typically written in JavaScript, not PHP...since JavaScript has the ability to change the contents of the page without reloading the page and PHP only works on... |
Forum: JavaScript / DHTML / AJAX Sep 1st, 2008 |
| Replies: 1 Views: 4,239 In concept ...
By using a javascript-class approach, rather than a procedural approach you can instantiate multiple object instances of the class ... or you could simply reuse the same... |
Forum: JavaScript / DHTML / AJAX Aug 29th, 2008 |
| Replies: 12 Views: 4,675 We were scrolling down the select field when the user clicked an option, and Firefox will automatically scroll to the bottom select when the page loads, but IE doesn't.
So we simply need to... |
Forum: JavaScript / DHTML / AJAX Aug 25th, 2008 |
| Replies: 9 Views: 2,044 You're welcome,
For what it's worth, some people discourage this approach stylistically since it can obscure code, but technically it's sound and I prefer it over the following two examples (when... |
Forum: JavaScript / DHTML / AJAX Aug 19th, 2008 |
| Replies: 1 Views: 1,586 Have a look at this
<html>
<head>
<script type="text/javascript">
function compare () {
var one = document.getElementById('one');
var two = document.getElementById('two');
if (... |
Forum: PHP Aug 19th, 2008 |
| Replies: 83 Views: 4,648 I keep learning SQL as I go ... like everything ... R0bb0b is great with SQL and PHP from what I've seen so far :-)
First off let me give an example of some methods you might be able to use to... |
Forum: PHP Aug 15th, 2008 |
| Replies: 4 Views: 1,464 My first config attempt was also to alter the config.sample.inc.php but that gave me the same error as you have ... so I looked in the other file and it worked out of the box just adding my root... |
Forum: PHP Aug 15th, 2008 |
| Replies: 8 Views: 579 Also, assuming your server host didn't disable this feature (enabled by default) for security reasons (allow_url_fopen) you can also get the contents of a file via URL with ...
file (returns file... |
Forum: PHP Aug 15th, 2008 |
| Replies: 13 Views: 772 You've got the answer above, but remember that people can "view source" and see things hidden from the page display...just a thought to keep in mind. |
Forum: JavaScript / DHTML / AJAX Aug 15th, 2008 |
| Replies: 6 Views: 1,012 ~s.o.s~ is, again, completely correct ... and you do need some server side language since JavaScript has what is known as a sandbox which keeps it from doing cross-site scripting, as a security... |
Forum: JavaScript / DHTML / AJAX Aug 10th, 2008 |
| Replies: 14 Views: 3,525 Okay, here's what I've got so far ...
It works pretty well in Firefox 3 (which I use for development) and okay in Opera 9.51 and so-so in IE 7 (which is buggy as all get-out).
Like I can't seem... |
Forum: JavaScript / DHTML / AJAX Aug 7th, 2008 |
| Replies: 9 Views: 1,287 I admit, it's good to learn how to use the asynchronous http objects ... I did test my approach and it does work and is very easy to implement (compared to what you're doing) so if you change your... |
Forum: HTML and CSS Aug 4th, 2008 |
| Replies: 16 Views: 12,342 Darn, I made a long reply last night before going to bed but it seems to not have posted here.
The scrolling and pop-up window of the gallery you showed me is using JavaScript. You could also use... |