|
More site info...
HTML Programming | Forum profile
|
|
Forum profile page for HTML Programming on http://www.devshed.com.
This report page is the aggregated overview from a single forum: HTML Programming, located on the Message Board at http://www.devshed.com.
This forum profile page summarizes the general forum statistics such as: Users Activity, Forum Activity, and Top Authors, which are reported in either a table or graph below for a given reporting time period.
Additional forum profile information for "HTML Programming" on the Message Board at http://www.devshed.com is also shown in the following ways:
1) Latest Active Threads
2) 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 forum's popularity and/or exact posting volumes at any given reporting period.
|
|
|
|
|
Posting activity on HTML Programming:
|
|
Week
|
Month
|
3 Months
|
|
Threads:
|
28
|
103
|
302
|
|
Post:
|
50
|
212
|
687
|
|
|
HTML Programming Posting activity graph:
|
Top authors during last week:
user's latest post:
Launch php script AFTER file upload
Published (2009-11-08 10:32:00)
Quote: Originally Posted by speedy_rudolf I don't think it matters. The problem is the script launched before the files finished uploading. No, that's not how it works. The script will run once the uploading process is done: be that when everything is entirely uploaded or not. As Winters said, post code. As I said, use $_FILES["..."]["error"] to check if there were problems during the upload.
user's latest post:
Web Development Tutorials
Published (2009-11-07 00:43:00)
Welcome to DevShed Forums, Labhrainn Aemi. Quote: CSS is mainly used for defining styles ,but it can be used for page layout. "Can be used"? The alternative, using tables for layout, is becoming less and less common.
user's latest post:
Www redirects to index?
Published (2009-11-08 15:14:00)
Thank you very much for that explanation it is greatly appreciated!
user's latest post:
Launch php script AFTER file upload
Published (2009-11-08 09:23:00)
Quote: Originally Posted by requinix You mean you hit the submit button and nothing happened for two minutes? If it's a slow connection speed then yeah, it might take that long. How are you getting these time measurements? I don't think it matters. The problem is the script launched before the files finished uploading.
user's latest post:
Insert PHP into this button
Published (2009-11-12 12:22:00)
Code: <FORM METHOD="LINK" ACTION="../checkout/cart/"> <INPUT TYPE="submit" class="form-button" VALUE="<?php echo $this->__('There are %s items in your cart.', $this->getUrl('checkout/cart'), $_cartQty) ?>"> </FORM> I also tried taking out the strong tag incase that...
user's latest post:
Www redirects to index?
Published (2009-11-08 15:04:00)
Quote: Could you please explain a little bit as to how www. is the subdomain? How is www the subdomain? These are technical names given to parts of a URL. WWW urls are of the form http://subdomain.domain.tld where the domain and tld are required. If you look at the format http:///www.blah.com, clearly, www is the subdomain. Quote: Or what might be mis-configured? No idea. Well, look, the request comes to the computer at blah.com. The request...
user's latest post:
Drop Downs and Text Inputs
Published (2009-11-08 02:36:00)
Hmmm, yes, I thought as much. One idea that comes to mind is a DIV populated with rows of content that pops up on mouseover, and then JS to populate the text box with the selected item...
user's latest post:
Need Help With Web Development...
Published (2009-11-10 05:35:00)
If you are going to be developing this in Java, I would recommend the Java forum for some framework discussion. With regards to SMS, that is a facility you would need to pay for. There is a pretty decent article on CodeWalkers but it does have it's bias towards a particular provider. You will need to do some research for the best solution for your application.
user's latest post:
[Fireworks] Red X's show up...
Published (2009-11-12 17:26:00)
[QUOTE=elrod90] the same menu works on every other htm page on the site. this page is a php page that displays products. I previewed it every step of the way as i built it in a browser. It worked fine until I put in the second menu which is on the side of the page. When I previewed it in the browser, the x's came back. I'm confused.[/ QUOTE]
|
|
|
|
Latest active threads on HTML Programming::
Started 2 days, 10 hours ago (2009-11-12 17:35:00)
by Akh
I would drop the negative conditional comment (like <!--[if !IE]> and <![if !IE]>) and just use conditional comments to give fixes for IE if necessary.
Code:
<link href="css/main.css" rel="stylesheet" type="text/css"
<!--[if lte IE 7]>
<link rel="stylesheet" type="text/css" href="ie5-7.css" />
<![endif]-->
http://www.quirksmode.org/css/condcom...
Started 3 days, 15 hours ago (2009-11-11 13:06:00)
by lokisapocalypse
That means it cannot find an image at the location you specified. I would check that URL to the image is correct and also that you have uploaded that image to the same location on your server.
Started 2 days, 16 hours ago (2009-11-12 11:29:00)
by E-Oreo
You can't put an <a> tag inside of the button's value attribute. You need to modify the text that is outputted by the PHP and remove the HTML from it if you want to display it inside of a button.
Started 2 days, 16 hours ago (2009-11-12 12:20:00)
by marcnyc
Started 2 days, 18 hours ago (2009-11-12 10:19:00)
by edfollett
do you have a link to the page so we can see what you mean?
thanks
Ed
Started 3 days, 9 hours ago (2009-11-11 19:11:00)
by kk5st
The http-equiv is a stand-in for a server response header. If the server header exists, it always trumps the meta equiv. Consider this server header:
Code:
Date: Thu, 12 Nov 2009 00:06:04 GMT
Server: Apache/2.2.8 (Unix) mod_ssl/2.2.8 OpenSSL/0.9.7a mod_auth_passthrough/2.1 mod_bwlimited/1.4 PHP/5.2.5
X-Powered-By: PHP/5.2.5
Keep-Alive: timeout=5, max=72
Connection:...
Started 3 days, 9 hours ago (2009-11-11 19:03:00)
by kk5st
Create the value string server side, and plug it into the template.
cheers,
gary
Started 3 days, 19 hours ago (2009-11-11 08:38:00)
by Northie
class='dir' allows javascript and css to identify the element to which that class has been applied.
To generate a horizontal menu with vertical drop downs will require you to alter the CSS to get the desired look and then some javascript to get the desired functionality
|
|
Hot threads for last week on HTML Programming::
Started 6 days, 19 hours ago (2009-11-08 08:50:00)
by requinix
You're misunderstanding something. For one, upload scripts - regardless of the language - start when the files are being uploaded. That cannot be avoided. It's the way things are supposed to work.
You should always use $_FILES[...]["error"] to check for any errors. One possibility is that the file upload did not complete. If that's the case then there could be a variety of causes, ...
Started 6 days, 14 hours ago (2009-11-08 14:05:00)
by Oler1s
The server is configured incorrectly. www is the subdomain, and how subdomains are handled depends on the server.
Started 2 days, 16 hours ago (2009-11-12 11:29:00)
by E-Oreo
You can't put an <a> tag inside of the button's value attribute. You need to modify the text that is outputted by the PHP and remove the HTML from it if you want to display it inside of a button.
Started 1 week, 3 days ago (2009-11-04 16:03:00)
by Kravvitz
Welcome to DevShed Forums, Frank.
These topics take years to master, so don't expect to learn it all in a week or month. When you have questions, I encourage you to ask them here.
Anyway, here are some resources on those topics:
HTML:
http://www.htmldog.com/guides/
Bulletproof HTML: 37 Steps to Perfect Markup
http://www.dynamicsitesolutions.com/html/
...
Started 1 week ago (2009-11-07 20:21:00)
by requinix
Not with regular HTML.
It might be possible to hack out something involving a select and a precisely-placed text box but I've never tried that.
Started 3 days, 15 hours ago (2009-11-11 13:06:00)
by lokisapocalypse
That means it cannot find an image at the location you specified. I would check that URL to the image is correct and also that you have uploaded that image to the same location on your server.
Started 2 days, 10 hours ago (2009-11-12 17:35:00)
by Akh
I would drop the negative conditional comment (like <!--[if !IE]> and <![if !IE]>) and just use conditional comments to give fixes for IE if necessary.
Code:
<link href="css/main.css" rel="stylesheet" type="text/css"
<!--[if lte IE 7]>
<link rel="stylesheet" type="text/css" href="ie5-7.css" />
<![endif]-->
http://www.quirksmode.org/css/condcom...
Started 3 days, 9 hours ago (2009-11-11 19:11:00)
by kk5st
The http-equiv is a stand-in for a server response header. If the server header exists, it always trumps the meta equiv. Consider this server header:
Code:
Date: Thu, 12 Nov 2009 00:06:04 GMT
Server: Apache/2.2.8 (Unix) mod_ssl/2.2.8 OpenSSL/0.9.7a mod_auth_passthrough/2.1 mod_bwlimited/1.4 PHP/5.2.5
X-Powered-By: PHP/5.2.5
Keep-Alive: timeout=5, max=72
Connection:...
Started 2 days, 16 hours ago (2009-11-12 12:20:00)
by marcnyc
Started 2 days, 18 hours ago (2009-11-12 10:19:00)
by edfollett
do you have a link to the page so we can see what you mean?
thanks
Ed
|
|