Go Back   CodingForums.com > Search Forums

Before you post, read our: Rules & Posting Guidelines

Showing results 1 to 25 of 280
Search took 0.42 seconds.
Search: Posts Made By: Nile
Forum: JavaScript programming 12-28-2012, 11:26 PM
Replies: 10
Views: 306
Posted By Nile
Indeed, you've misunderstood onclick. Search...

Indeed, you've misunderstood onclick. Search google for "javascript tooltips" and you'll get what you wanted.
Forum: PHP 11-12-2012, 12:50 PM
Replies: 1
Views: 210
Posted By Nile
Check out example #7 here ...

Check out example #7 here

http://www.php.net/manual/en/function.sprintf.php
Forum: HTML & CSS 11-12-2012, 03:18 AM
Replies: 2
Views: 310
Posted By Nile
You'd have to be a bit more specific. There are...

You'd have to be a bit more specific. There are multiple ways to do it. You could use responsive web design, percentage values or Javascript.
Forum: PHP 11-11-2012, 11:11 PM
Replies: 2
Views: 369
Posted By Nile
Assuming the only issues were the notices you...

Assuming the only issues were the notices you reported.
<?php
$log_file = "online.txt";
$min_online = "1";
if ($_SERVER['HTTP_X_FORWARDED_FOR'] == "") {
$ip =...
Forum: JavaScript programming 11-11-2012, 09:48 PM
Replies: 12
Views: 537
Posted By Nile
Seems to work fine here:...

Seems to work fine here: http://eg.jfein.net/help/renoCF/
Forum: JavaScript programming 11-11-2012, 09:06 PM
Replies: 12
Views: 537
Posted By Nile
@Reno CF, I see that you've incorporated neither...

@Reno CF, I see that you've incorporated neither Phillip M's nor my idea into your script and because of this outrageous display of ignorance, I'm wary to help you.
Forum: JavaScript programming 11-11-2012, 06:41 PM
Replies: 12
Views: 537
Posted By Nile
With that being the current case, another...

With that being the current case, another alternative is to give the script tag you're working in an ID, get that script tag by the ID and use insertBefore to insert the randomly loaded Javascript...
Forum: JavaScript programming 11-11-2012, 06:25 PM
Replies: 12
Views: 537
Posted By Nile
@Phillip M, Is there a difference between what...

@Phillip M, Is there a difference between what you've posted and what I've posted? According to MDN, `document.head` returns the first `head` element on the page.
Forum: JavaScript programming 11-11-2012, 06:09 PM
Replies: 12
Views: 537
Posted By Nile
You could use Javascript to make a new <script>...

You could use Javascript to make a new <script> element, though I'm not sure if it's considered bad practice or not.


var script = document.createElement("script");
script.src = "ss-" +...
Forum: Computer/PC discussions 09-12-2012, 02:06 AM
Replies: 4
Views: 3,070
Posted By Nile
Everything below and above this post besides my...

Everything below and above this post besides my original post should not be listened to. On every computer, there are different registry options and different settings that need to be taken care of....
Forum: PHP 08-20-2012, 12:45 PM
Replies: 5
Views: 447
Posted By Nile
It seems as if you need to learn PHP and improve...

It seems as if you need to learn PHP and improve your skills before taking on a project like this. If you truly knew PHP, incorporating the distance matrix api would be a breeze.
Forum: PHP 08-20-2012, 05:29 AM
Replies: 5
Views: 447
Posted By Nile
You may be interested in the Google Distance...

You may be interested in the Google Distance Matrix API. You can't really do what you're trying to achieve without a third-party app coming in and taking over unless you feel like mapping out the...
Forum: Computer/PC discussions 08-18-2012, 01:34 AM
Replies: 4
Views: 3,070
Posted By Nile
Unfortunately, you've infected yourself with...

Unfortunately, you've infected yourself with aggressive spyware that you can't simply remove by uninstalling it. The longer you wait with this type of spyware, the more it will infect your computer...
Forum: Unknown sized projects (request quote) 08-17-2012, 08:52 PM
Replies: 9
Views: 1,618
Posted By Nile
Illegal or not, look at what he's asking for. He...

Illegal or not, look at what he's asking for. He wants a programmer who will primarily be a PHP programmer, but should ALSO have a MINIMUM of four YEARS(?!?) of experience with HTML, CSS, Javascript...
Forum: PHP 08-17-2012, 06:31 PM
Replies: 7
Views: 447
Posted By Nile
I'm glad to help you :). To change it to...

I'm glad to help you :). To change it to resolved, go to your first post and "Edit" it (probably on the bottom righthand side). At the top you will have a select box with the option to select...
Forum: MySQL 08-17-2012, 06:30 PM
Replies: 4
Views: 529
Posted By Nile
Glad to help.

Glad to help.
Forum: MySQL 08-17-2012, 06:27 AM
Replies: 4
Views: 529
Posted By Nile
Not sure if this is the problem, but in your...

Not sure if this is the problem, but in your nested while() statements, you're replacing the value of $row several times. I suggest that for each while() statement you use different variables names...
Forum: Unknown sized projects (request quote) 08-16-2012, 10:10 PM
Replies: 9
Views: 1,618
Posted By Nile
The ignorance you're displaying right now is...

The ignorance you're displaying right now is amusing. The price you're offering is basically illegal. Look at yourself before you call others names.
Forum: PHP 08-16-2012, 03:34 PM
Replies: 7
Views: 447
Posted By Nile
You cannot get something from nothing. If your...

You cannot get something from nothing. If your date is 16-Aug-12, you only have three references to match, so "10:38:38 AM" is a problem (four more variables). The DateTime will probably set these to...
Forum: HTML & CSS 08-16-2012, 03:31 PM
Replies: 5
Views: 295
Posted By Nile
.color("background-color",...

.color("background-color", "#ff0000").delay(500).css("background-color", "#000");
Forum: Unknown sized projects (request quote) 08-16-2012, 03:29 PM
Replies: 9
Views: 1,618
Posted By Nile
You're asking for less than minimum wage. You're...

You're asking for less than minimum wage. You're not going to find a programmer...
Forum: HTML & CSS 08-16-2012, 06:32 AM
Replies: 5
Views: 295
Posted By Nile
Use .css('background-color', '#000000'); instead...

Use .css('background-color', '#000000'); instead of changing the visibility.
Forum: PHP 08-16-2012, 06:01 AM
Replies: 7
Views: 447
Posted By Nile
Maybe the DateTime class will help. ...

Maybe the DateTime class will help.

http://www.php.net/manual/en/datetime.createfromformat.php
Forum: PHP 08-16-2012, 05:58 AM
Replies: 2
Views: 238
Posted By Nile
You really should learn what all of these errors...

You really should learn what all of these errors mean and get a decent programming editor that has built in syntax highlighting.

Take a look at your query. You're missing the closing quote and...
Forum: PHP 08-11-2012, 09:00 AM
Replies: 3
Views: 388
Posted By Nile
*embarrassed* Change that line to: ...

*embarrassed*

Change that line to:

$query->execute(array($nickname));
Showing results 1 to 25 of 280

 
Forum Jump

All times are GMT +1. The time now is 07:00 AM.