Go Back   CodingForums.com > Search Forums

Before you post, read our: Rules & Posting Guidelines

Showing results 1 to 25 of 500
Search took 2.26 seconds.
Search: Posts Made By: bullant
Forum: JavaScript programming 08-16-2011, 01:57 PM
Replies: 2
Views: 577
Posted By bullant
One option: Add a window.onload event...

One option:

Add a window.onload event handler that checks if there is at least one valid character in the <textarea>.

If there is, set the checked status to true for the radio button you want...
Forum: JavaScript programming 08-16-2011, 12:17 PM
Replies: 3
Views: 316
Posted By bullant
Another option is to use the Number object...

Another option is to use the Number object (http://www.w3schools.com/jsref/jsref_obj_number.asp) to convert a string to a number.

Whether you use Number or ParseFloat depends on what you really...
Forum: Geek News and Humour 08-16-2011, 08:17 AM
Replies: 64
Views: 12,203
Posted By bullant
Why, what's wrong with FF5? I've been...

Why, what's wrong with FF5?

I've been using it for months now without any problems.

But to remove it, if you're using a windows pc, just go to the control panel and remove FF5 just like you...
Forum: JavaScript programming 08-16-2011, 07:50 AM
Replies: 6
Views: 873
Posted By bullant
Simultaneously or sequentially?

Simultaneously or sequentially?
Forum: HTML & CSS 08-16-2011, 07:42 AM
Replies: 8
Views: 1,319
Posted By bullant
that div is basically redundant because there is...

that div is basically redundant because there is no content in it.

A better option imo is to put the floated <img>'s in a div for each row
Forum: JavaScript programming 08-16-2011, 06:32 AM
Replies: 3
Views: 468
Posted By bullant
Is len defined anywhere in your code?

Is len defined anywhere in your code?
Forum: PHP 08-16-2011, 06:00 AM
Replies: 11
Views: 647
Posted By bullant
hmmm.....that to me is like saying running is...

hmmm.....that to me is like saying running is hard before you can walk.

Once you can walk, running becomes easy :)
Forum: General web building 08-16-2011, 05:55 AM
Replies: 2
Views: 553
Posted By bullant
it depends on how much graphics and content there...

it depends on how much graphics and content there is on each page. I simply charge an hourly rate x my estimated time for the job.
Forum: PHP 08-16-2011, 05:50 AM
Replies: 11
Views: 647
Posted By bullant
Whether you use AJAX or not, you will definitely...

Whether you use AJAX or not, you will definitely need server side processing (PHP, ASP, JSP etc) to delete one row at a time, or a more user friendly single or multiple rows at a time as suggested...
Forum: HTML & CSS 08-16-2011, 05:47 AM
Replies: 3
Views: 588
Posted By bullant
Assuming all the html/css/javascript for an...

Assuming all the html/css/javascript for an article is contained in a single html file then you should be able to upload the html file as a text file via a <form> and move it to a designated folder...
Forum: MySQL 08-16-2011, 03:43 AM
Replies: 5
Views: 883
Posted By bullant
Looks like you need to do some Basic Debugging...

Looks like you need to do some Basic Debugging 101 (http://www.codingforums.com/showpost.php?p=1082858&postcount=1)

Echo out the actual query being run.


$query2 = "SELECT * FROM songs WHERE...
Forum: PHP 08-16-2011, 02:28 AM
Replies: 11
Views: 647
Posted By bullant
Where did the code that generated the html table...

Where did the code that generated the html table in your image come from?
Forum: PHP 08-16-2011, 01:24 AM
Replies: 11
Views: 647
Posted By bullant
yep, that looks like a html table (probably...

yep, that looks like a html table (probably generated by php code) displaying data from records retrieved from a database table - quite normal and typical.

What I posted is simply how I have done...
Forum: PHP 08-16-2011, 12:52 AM
Replies: 11
Views: 647
Posted By bullant
hmmmmm......:confused: - sounds pretty straight...

hmmmmm......:confused: - sounds pretty straight forward and simple to me

Post the html you have so far and we can try to help you get it working with the php.
Forum: HTML & CSS 08-16-2011, 12:36 AM
Replies: 5
Views: 537
Posted By bullant
no no no :) [ot] = "off topic" and in some...

no no no :)

[ot] = "off topic" and in some forums the [ot] tags enclose the text between the tags in different styles to normal to highlight the fact the text is not strictly related to the...
Forum: PHP 08-16-2011, 12:29 AM
Replies: 11
Views: 647
Posted By bullant
In your html <form> you could have elements whose...

In your html <form> you could have elements whose name is something like "delMe[]".

The value of those elements would be the value in the primary key column of the row you want to delete if that...
Forum: HTML & CSS 08-15-2011, 11:54 PM
Replies: 5
Views: 537
Posted By bullant
<font> is deprecated and nowadays you should be...

<font> is deprecated and nowadays you should be using css for styling
Forum: PHP 08-15-2011, 11:43 PM
Replies: 2
Views: 236
Posted By bullant
apart from $rate = $_POST['rate']; ...

apart from

$rate = $_POST['rate'];

where are you using rate in your code?
Forum: HTML & CSS 08-15-2011, 11:38 PM
Replies: 7
Views: 641
Posted By bullant
something like this...

something like this (http://www.w3schools.com/js/js_events.asp)
Forum: JavaScript programming 08-15-2011, 03:24 PM
Replies: 5
Views: 918
Posted By bullant
Why are you using onfocusout? From sitepoint...

Why are you using onfocusout?

From sitepoint reference (http://reference.sitepoint.com/html/extended-event-attributes/onfocusout):



As devnull69 mentions, onblur is what you should be using
Forum: HTML & CSS 08-15-2011, 03:09 PM
Replies: 17
Views: 1,407
Posted By bullant
Then the solution is in post 3

Then the solution is in post 3
Forum: JavaScript programming 08-15-2011, 03:06 PM
Replies: 3
Views: 406
Posted By bullant
can you post your code so we can see what is...

can you post your code so we can see what is going on.
Forum: HTML & CSS 08-15-2011, 02:20 PM
Replies: 7
Views: 641
Posted By bullant
One option is to attach an onload event handler...

One option is to attach an onload event handler to the first image which then sets the src for the second <img> and unhides it.
Forum: HTML & CSS 08-15-2011, 02:15 PM
Replies: 2
Views: 263
Posted By bullant
One option: Give the image container a...

One option:

Give the image container a height and set overflow: auto
Forum: HTML & CSS 08-15-2011, 02:07 PM
Replies: 17
Views: 1,407
Posted By bullant
Is the folder the css file is in the same folder...

Is the folder the css file is in the same folder as the folder the html file is in?
Showing results 1 to 25 of 500

 
Forum Jump

All times are GMT +1. The time now is 10:32 PM.