Forum: JavaScript / DHTML / AJAX 34 Days Ago |
| Replies: 6 Views: 707 This is not an IE issue.
Get yourself Firebug for Firefox and the IE Developer Toolbar for IE7 -- maybe 6 and 8?
When I run through the example on firefox it is not removing the li tags from the... |
Forum: PHP Oct 29th, 2009 |
| Replies: 2 Views: 503 if you're making the form submit to itself then you need to make the index action in the index controller look for post data so it knows it needs to validate the form.
<?php
class... |
Forum: PHP Mar 9th, 2009 |
| Replies: 1 Views: 293 I'm not sure if there will be a reliable alternative for the time being.
This is due to the Y2K38 problem. http://en.wikipedia.org/wiki/Year_2038_problem |
Forum: PHP Feb 26th, 2009 |
| Replies: 109 Views: 3,645 the registered number of algorithms will vary by system, although in my experience most of them are commonly available. As far as execution time, that would vary drastically depending on the type of... |
Forum: PHP Feb 25th, 2009 |
| Replies: 109 Views: 3,645 The hash function is a function that allows you to utilize numerous kinds of algorithms. if you run print_r(hash_algos()); it will give you an array of the hash algorithms available on your system.... |
Forum: PHP Feb 25th, 2009 |
| Replies: 109 Views: 3,645 hashing and encryption are two different things.
hashes like MD5, SHA1, Whirlpool etc. are one way. There *should* NOT be a way to reverse them.
Encryption however is two way. you can encrypt a... |
Forum: PHP Feb 24th, 2009 |
| Replies: 3 Views: 713 <?php
$xYahooXML = '
<ysearchresponse responsecode="200">
<prevpage> /ysearch/web/v1/sunflower%20seeds?appid=e4j0dGfIkY0.VnPaj_m8JivWDmAdWAV50uTRuIaqvA--&format=xml&count=1&start=0 </prevpage>... |
Forum: PHP Feb 18th, 2009 |
| Replies: 4 Views: 666 <script type="text/javascript">
document.write('Clock');
</script>
But, seriously, how about you do some searching, try to put something together and when you have problems you post what you... |
Forum: PHP Feb 17th, 2009 |
| Replies: 7 Views: 1,713 If the server is configured to allow access from the outside world, then just use the ip of the machine to connect to it.
At least in terms of cPanel you need to add external hosts to the... |
Forum: PHP Feb 11th, 2009 |
| Replies: 24 Views: 955 <td width=""><p><?php echo nl2br(wordwrap($message, 75, PHP_EOL, true)); ?></p></td>
The wordwrap function breaks your content down with PHP_EOL which is a constant that is defined to match the... |
Forum: PHP Jan 28th, 2009 |
| Replies: 12 Views: 1,578 I'm not seeing whats so difficult with the code i posted.
I tend to believe the problem is, you don't want to look at, and apply the concepts to your code, you simply want the exact solution to your... |
Forum: PHP Jan 12th, 2009 |
| Replies: 9 Views: 619 in your parameter_check function
$_SESSION['error_list'][] = $error_list; |