Register
FAQ
Calendar
Search
Today's Posts
Rules
Guidelines
SMS enable your application
via Clickatell’s fast, simple and reliable API's, built to integrate with any system.
Click here
to learn more.
Flash Website Builder
- Trendy Site Builder is a Flash Site Building tool that helps users build stunning websites.
Check Out Custom
Custom Logo Design
by LogoBee. Website Design and Free Logo Templates available.
CodingForums.com
>
Search Forums
Search Results
User Name
Remember Me?
Password
Before you post, read our:
Rules
&
Posting Guidelines
Page 1 of 20
1
2
3
11
>
Last
»
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
Show / hide textbox
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
How to check if variables are integer
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
Firefox 5 was just released
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
Form submit data to multiple sources
Views:
873
Posted By
bullant
Simultaneously or sequentially?
Simultaneously or sequentially?
Forum:
HTML & CSS
08-16-2011, 07:42 AM
Replies:
8
show images in a row
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
Redraw element within for loop
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
onclick php?
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
PSD Creation Pricing
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
onclick php?
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
consequences of multiple <head>&<body>
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
Query: Select * From table Where element In $stringarray
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
onclick php?
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
onclick php?
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
onclick php?
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
Links and text
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
onclick php?
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
Links and text
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
undefined index/variable
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
pausing a page
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
onfocusout problem
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
background-image won't show using css
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
Two contact form in same page
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
pausing a page
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
How to place scroll boxes?
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
background-image won't show using css
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
Page 1 of 20
1
2
3
11
>
Last
»
Forum Jump
User Control Panel
Private Messages
Subscriptions
Who's Online
Search Forums
Forums Home
:: Client side development
JavaScript programming
DOM and JSON scripting
Ajax and Design
JavaScript frameworks
Post a JavaScript
HTML & CSS
XML
Flash & ActionScript
Adobe Flex
Graphics and Multimedia discussions
General web building
Site reviews
Building for mobile devices
:: Server side development
Apache configuration
Perl/ CGI
PHP
Post a PHP snippet
MySQL
Other Databases
Ruby & Ruby On Rails
ASP
ASP.NET
Java and JSP
Other server side languages/ issues
ColdFusion
Python
:: Computing & Sciences
Computer Programming
Computer/PC discussions
Geek News and Humour
Web Projects and Services Marketplace
Web Projects
Small projects (quick fixes and changes)
Medium projects (new script, new features, etc)
Large Projects (new web application, complex features etc)
Unknown sized projects (request quote)
Vacant job positions
Looking for work/ for hire
Project collaboration/ partnership
Paid work offers and requests (Now CLOSED)
Career, job, and business ideas or advice
Domains, Sites, and Designs for sale
Domains for sale
Websites for sale
Design templates and graphics for sale
:: Other forums
Forum feedback and announcements
All times are GMT +1. The time now is
10:32 PM
.
Web Hosting UK
|
Dedicated Server Hosting
|
Shareware Junction
|
Software Geek
|
Flash file uploader
|
Cloud Server
|
Web Hosting Australia
Home
-
Contact Us
-
Archives
-
Link to CF
-
Resources
-
Top
Powered by vBulletin®
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.