|
More site info...
WebDeveloper.com - www.webdeveloper.com | Site profile
|
|
Site profile page for http://www.webdeveloper.com.
This report page has aggregated and summarized the online discussions from the Message Board located at http://www.webdeveloper.com.
This site profile page outlines general site statistics such as: Users Activity, Site Activity, Site Rank, and Top Authors, which are reported in either a table or graph below for a given reporting time period.
Additional site profile information for http://www.webdeveloper.com is also shown in the following divisions:
1) Top 10 Active Forums during Last Week
2) Top 10 Site Forums
3) Latest Active Threads
4) Hot Threads for Last Week
Warning: These statistics are generated using 'best efforts' and can experience delays and reporting errors at times. Please note that such statistics do not constitute a site's popularity and/or exact posting volumes at any given reporting period.
|
|
|
|
|
Posting activity table on WebDeveloper.com:
|
|
Week
|
Month
|
3 Months
|
|
Threads:
|
860
|
3,004
|
8,468
|
|
Post:
|
2,978
|
8,988
|
21,831
|
|
|
Authority Badge:
|
|
|
BoardReader Authority Badge code for WebDeveloper.com (http://www.webdeveloper.com)
|
|
Put this code anywhere on your forum page:
|
|
|
|
|
|
|
|
Rating - The position measured by activity among all forum sites tracked by BoardReader.
If rating is 10 there are 9 forum sites which have higher activity.
Posts - Number of posts on forum site during last 7 days.
Threads - Number of threads on forum site active during last 7 days.
Authors - Number of authors which contributed to the site within last 7 days.
|
|
|
|
|
WebDeveloper.com posting activity graph:
|
|
http://www.webdeveloper.com Alexa graph:
|
Top authors on WebDeveloper.com during last week:
user's latest post:
Can't get content of the...
Published (2009-11-20 11:11:00)
I guess you missed the way IFRAME element works: http://www.w3schools.com/TAGS/tag_iframe.asp An IFRAME loads and displays another HTML file into the document
user's latest post:
Force view through iframe
Published (2009-11-20 13:47:00)
Put this in the document that must load via framepage. Code: window.onload=function() { if(top.location.href.indexOf('framepage.htm')== -1) { location.href='framepage.htm'}; };
user's latest post:
Allowing Users To Upload Their...
Published (2009-11-20 22:33:00)
One way is to process the uploaded video file server side using ffmpeg (most common) to convert it to the file format you want (.flv for Flash Players) and store the video in a database as a blob or in a folder as a file. There are several other options also.
user's latest post:
Jquery AJAX doesnt work in IE
Published (2009-11-18 17:05:00)
Actually i think that's the wrong function.... maybe we need to be looking at principal.js instead.
jamesbcox1980 Registered User
69
user's latest post:
PHP Session HELP!!!
Published (2009-11-20 23:24:00)
Can't help you with that without seeing code or greatly enhancing my ESP. If the page can be accessed without having those session variables set yet, you can use conditional logic there as well: PHP Code: if(isset( $_SESSION [ 'foo' ])) { $foo = $_SESSION [ 'foo' ]; } else { $foo = 'default value' ; } That can be...
user's latest post:
Searching multiple columns using...
Published (2009-11-20 12:19:00)
Quote: Originally Posted by chazzy some dbms also provide simpler solutions for this instead of an or. in mysql you can use its full text search. you can try using a concat in oracle as well. And engines as well. MSSQL also have full text search.
user's latest post:
Please Review: Reverse Telephone...
Published (2009-11-20 17:50:00)
More cross-browser issues fixed... Trouble with conflicting scripts... my expanding DIV conflicted with the resizeable iFrame in FF. ...either that or the JavaScript-enhanced Web 2.0 forms... *&$%&@*#(@% The look is crappier, but I just wanted to make it work... ...for large results the extended results are not yet hooked up... got busy with another project. ...maybe next week... - or not.
user's latest post:
Online restaurant reservations
Published (2009-11-20 07:30:00)
This is about $140 and based on the screenshots, seems excellent. Front end visitor area (web site) back end admin area (booking control/dashboard) PHP/MySQL and even includes a Google mashup so customers can find your restaurant, too! It has lots of other features like a CMS, optimized for SEO, templated, output booking info to csv and so on. Very cool. http://www.web-restaurants.com/ <--- Has online demo link
user's latest post:
How to let JavaScript allow me...
Published (2009-11-16 18:12:00)
Hi Vic I removed the <Label> from each line and now they are not showing. Now its not showing those lines anymore. Only thing left: the form works fine and passes the grand total price as well as the list of add-ons to the paypal form. It doesn't work on IE version 6 or 7. Asked PayPal support and waiting for an answer. In the meantime I want to thank you for your effort. Kind Regards Rafi
|
|
|
Top 10 active forums on WebDeveloper.com during last week:
|
|
Top 10 forums on WebDeveloper.com:
PHP
- 56,430 posts
|
CSS
- 30,969 posts
|
HTML
- 25,809 posts
|
General
- 10,561 posts
|
The Coffee Lounge
- 8,167 posts
|
SQL
- 7,654 posts
|
Website Reviews
- 6,009 posts
|
ASP
- 5,917 posts
|
Multimedia
- 4,035 posts
|
XML
- 3,746 posts
|
|
|
|
|
Latest active threads on WebDeveloper.com:
Started 12 hours, 46 minutes ago (2009-11-22 10:14:00)
by donatello
I have a dot-org that gets decent traffic.
Dot-com is best, so if you can find a good one... even one with hyphens, get it!
What is your area, perhaps I can help with a cheap domain?
Started 17 hours, 42 minutes ago (2009-11-22 05:18:00)
by mitya
Did you check your error console? You have an extraneous bracket at the end of your function's first 4 lines.
Any time something is returning undefined but is so obviously defined, suspect your syntax.
Started 1 day ago (2009-11-21 22:35:00)
by Nate1n22
Sony Vegas is good if your new at editing, Adobe Premiere is our more advanced.
As far as conversion I'm not sure.
Started 15 hours, 56 minutes ago (2009-11-22 07:04:00)
by mitya
Multiple ways to do this. No need to use JS, just CSS. The simplest method is to give a class to links you don't want to go bold on hover, i. e.
Code:
a.noBoldPlease:hover { font-weight: normal; }
...
<a class="noBoldPlease" href="#">link text</a>
Started 13 hours, 39 minutes ago (2009-11-22 09:21:00)
by jassinc
Try this...
PHP Code:
// properties of the uploaded file $name = $_FILES [ "myfile" ][ "name" ]; $type = $_FILES [ "myfile" ][ "type" ]; $size = $_FILES [ "myfile" ][ "size" ]; $temp = $_FILES [ "myfile" ][ "tmp_name" ]; $error = $_FILES [ "myfile" ][ "error" ]; if ( $error > 0 ) { die( "Error ...
Started 4 days, 19 hours ago (2009-11-18 03:14:00)
by Fang
The innerText does not work.
Code:
//DOM method
addremoveitem.appendChild(document.createTe xtNode('[x]'));
//or
addremoveitem.innerHTML='[x]' ;
Also the class will not always be applied correctly.
Code:
//not this
addtotal.setAttribute('className','col2');
// use
addtotal.className='col2';
Adding a value
Code:
//not this
addtotal.setAttribute('value','subtotal....
Started 5 days, 9 hours ago (2009-11-17 13:21:00)
by Odlaren Odlaren is offline Registered User
I am using ASPUpload to put image files om the server. Now the user puts his file with whatever name. I want to let the asp pages give the files name of the users member names, i.e. 245.jpg... 1245.jpg and so on.
I thought of changing the names in an asp page with help of FileSystemObject but the problem is to know which file was uploaded. Especially if more than one user is uploading ...
Started 1 day, 12 hours ago (2009-11-21 10:07:00)
by Fang
That is normal layout
Code:
<p>This is <img> This is</p>
There must be more specific requirements.
|
|
Hot threads for last week on WebDeveloper.com:
Started 4 days, 19 hours ago (2009-11-18 03:14:00)
by Fang
The innerText does not work.
Code:
//DOM method
addremoveitem.appendChild(document.createTe xtNode('[x]'));
//or
addremoveitem.innerHTML='[x]' ;
Also the class will not always be applied correctly.
Code:
//not this
addtotal.setAttribute('className','col2');
// use
addtotal.className='col2';
Adding a value
Code:
//not this
addtotal.setAttribute('value','subtotal....
Started 1 week, 3 days ago (2009-11-12 07:53:00)
by spacemoc Registered User
Hi,
I have huge problem to export to excel file results from search. It's a simple search between the dates like a start date and end date. And I would like to recievie result in a excel file.
Cheers
Seb
Started 3 days, 7 hours ago (2009-11-19 15:39:00)
by scragar
Try using a wrapper.
Code:
req.onreadystatechange = (function(topArgs){// anything else you may need
return function (aEvt) {
if (req.readyState == 4){
if(req.status == 200)
topArgs[3].call(req.responseText, topArgs);
else
////..............
})(arguments );// close the wrapper
Started 1 week, 1 day ago (2009-11-14 12:44:00)
by NogDog
Assuming that the correct DB.php file is loaded by your require statement, that error message does not make much sense. You might want to try requiring it via its full path name in case another file in the include_path is being loaded instead.
Started 1 week ago (2009-11-15 11:19:00)
by Sivy Registered User
Alright, I have a js file in another folder, and I have my homepage in the one under it. Everything is happy and fine when the Js is in my homepage but once it is outside my linking does not work...
this is the JS and this is the Homepage...
nothing to complicated here...
HTML Code:
<html>
<head>
<title> Resume </title>
<script src= "js/Final_Project.js" ...
Started 1 week ago (2009-11-15 07:45:00)
by fenster89411 Registered User
Hi Guys,
This is my first post and will try to explain my problem as best I can.
My page has a combo box , The order the box is filled from the DB cannot be changed (for reasons I wont go into)
I am changing the order of the combo by this little piece of code , which runs after the page has loaded:
<SCRIPT LANGUAGE="JavaScript">
var oCombo;
var oOption;
var lValue...
Started 1 week, 2 days ago (2009-11-13 18:31:00)
by jamesbcox1980
I studied the JS a few days ago, and it tries to delete previously chosen options when you select different packages. It doesn't always work, but I'm not sure why.
We might need to build a little jQuery accordion style option selection system instead. Getting it to work with the current validation script might prove to be a bit puzzling though. Actually, I don't think it ever checks if you ...
Started 6 days, 12 hours ago (2009-11-16 10:24:00)
by subharb Registered User
Hello guys, I created a page where I do 2 ajax calls with jquery, the problem comes with IE, everything developes as usual with FF but IE doesnt show anything.
here's the link.
http://www.samanthacatering.com/prue...ina/index.h tml
You have to click on "Conocenos" and "Galeria" those have a click event that makes the ajax call.
Any help will be more than welcome. thanks!
Started 6 days, 16 hours ago (2009-11-16 06:03:00)
by imop Registered User
Greeting all!
I have an problem with checkbox function - check all / uncheck all
Found this code on google, seems to work fine, but it this dose not have thous functions... I`m really bad with Java, but want to add nice look to my page for checkbox!
the code
is behind the link - code in txt file
Can anyone help me?
Started 6 days, 18 hours ago (2009-11-16 04:30:00)
by JunkMale's Avatar
Whilst the initial holding page I put up was showing up perfectly fine and in accordance with instructions... The background image fails as far as I am aware on the MSIE browser the image does not display correctly.
What appears to be happening is the image will sit with the bottom half hanging from the top of the screen with a large blank space for the rest. It will also display the ...
|
|