6,558 Topics
| |
i'm driving insane right now i have a form wich has a lot of stuff in it as you fill it, javascript generates the OPTIONS[] for four SELECT objects at the end of the form. they are generated right and i have no troubles up to this point until... i … | |
Hey guys, im making a website with strihttp://www.daniweb.com/forums/newthread.php?do=newthread&f=143ct xhtml design and everytime i upload an image, it just wont validate when i try the w3schools validator. It keeps giving me an error message: " 1. Error Line 14, Column 36: document type does not allow element "img" here <img src="banner.jpg" … | |
Take a look at this: [url]http://flash-planet.co.cc/ViewGame.php?gid=93823[/url] The navlist is pushing all my content down. How do I avoid that?? conflicting CSS: [CODE] #conTOP { background-image:url('images/contop.png'); background-repeat: no-repeat; position:relative; width: 800px; height: 320px; top:170px; } .navlist { background-image:url('images/navlist.png'); background-repeat: no-repeat; position:relative; width: 250px; height: 600px; top:170px; left:730px; }[/CODE] | |
I have a problem with my left menus. I have 2 menus, a main menu on the top of the website and a menu on my left. I have 5 buttons/links on my main menu and for each section of the website I have a menu in the left frame. … | |
Help, I'm a php rookie. I have a functioning form to email script, but I can't seem to get it to display checked checkboxes. I am grateful for help on this! Here's the checkbox (three checkboxes) and submit portion of my html form: [code] <label>Check all that apply: </label> <p><input … | |
Hey folks, I need help with displaying a php array in a html table. I already have it displaying but it keeps repeating the column headings over each entry and also I want each row of the table to be a different color. I figured that the repeating column headings … | |
I havent done HTML in ages, so when I was redesigning my site, I used pohotoshop (slices and whatnot) to make my page and generated the html. When I open the html file on firefox its perfect, seemless, but when copy it to my website horrible white gaps appear between … | |
Hi All, I read the document here with the title "Using PHP and Javascript instead of CGI" on link [url]http://python.about.com/od/cgiformswithpython/ss/phpjscgi.htm[/url] can any one elaborate it with an python code say print 10 numbers.I am confused little bit that If I write test.py file for 10 numbers How will I call … | |
Hello everyone. I am trying to learn css. I download a free web template and have began to modify it a little bit. I feel like I am learning a lot, but I am trying to figure out why I have two vertical lines between two of my div's and … | |
hi. i have just started in a quest to design my own site. i have come along alot of information and i know a little HTML (just myspace codes really) but today i heard about CSS, but i have no idea what it does how much it costs or where … | |
Well i want to make my prog more pro so is boardless and it has custom buttons like close - minimize and option btn i made that option btn so it appears another form boardless with options but you can see completely the first form. i want like when i … | |
We are not interested in leaning whole ASP, instead i just want to generate a html page. Do you undertand????? | |
I have a code in .css file: [CODE] .... body { background: red; font: 70%/1.5em Verdana, Tahoma, arial, sans-serif; color: #777; margin: 15px 0; } ... [/CODE] In the html file, there is a form: [CODE] <body> .... <div> <form> <table> <tr><td>name</td><td><input ..../></td></tr> <tr><td>address</td><td><input ..../></td></tr> </table> </form> </div> .... </body> … | |
I am trying to change the look of the jsp/servlet pages dynamically based on the device from which the request comes. i have done the part of how to identify the devices from which the request arises. but stuck at the part where i should change the css sheet. is … | |
Hello, I have a time line calender script in javascript. I can display event's on the calender by adding the following in the html file; [CODE] <li class="Torqua" title="Apr 1 2010">This service is running normally.</li> <li class="Fishin" title="Apr 1 2010">This service is running normally.</li> <li class="Dartmout" title="Apr 1 2010">This service … | |
I am really new to php and am attempting to create a news reader on my site. I have gotten it running just fine in a page of its own, BUT, I need it to be inside a php include. How do I link different scripts and stylesheets in the … | |
Hi, what's wrong with this code? Now disappear background and div after this code show incorrect. [CODE="HTML"] <html> <head> <style type="text/css"> #first{ width: 200px; background-color: #345752; } #left_b{ background:transparent url('img/left.png'); background-position: left top; background-repeat: repeat-y; } #right_b{ background:transparent url('img/right.png'); background-position: right top; background-repeat: repeat-y; } #text{ float: left; width: 50px; … | |
i have this code: [CODE] var current; startOff = $('#all').offset(), offString = "{top :"+ startOff.top +", left :"+ startOff.left + "}"; current.css(offString); [/CODE] When "offString" is alerted its fine - eg {top: 123, left: 342} BUT it doesn't seem to like it, but when the alerted output is added into … | |
Does anyone know if there is a way to embed an executable in a web page to run in that web page. This would be a client side page. Here is what I want to do. I am a systems admin (not a web dev even though I know just … | |
Hi there I make a control for my web base program in VB.Net 2005 I use the style sheet [css] for make it see like a modal pop up. I make the css style with the IE, Fire Fox , safari specification and work great but when fire fox make … | |
This has me extremely frustrated. All my pages look fine in every browser EXCEPT Internet Explorer. For some reason, IE keeps moving my text to the right. Grrrr. Here is an example: [url]www.valleyafs.com/resources.htm[/url] I'm hoping someone can see what I've done wrong with my code, but any help is appreciated. … | |
| |
***Editted: added second problem I have this code, how do I make it stop once it's found the first instance of the [B]if[/B] happening. break, myparser.close(), and return don't work. [CODE]from html.parser import HTMLParser class MyHTMLParser(HTMLParser): def handle_starttag(self, tag, attrs): if tag == 'a' and (attrs[0][1].find('downloads&showfile') != -1): print(attrs[0][1]) print(attrs[1][1]) … | |
<?php session_start(); /*if (!isset($_SESSION['user'])) { header("Location: index.php"); }*/ include ("include/header.php"); include ("include/dbc.php"); //require_once "Spreadsheet/Excel/Writer.php"; //define('FPDF_FONTPATH','./fpdf/font/'); //require('./fpdf/fpdf.php'); //require ('pdf.php'); $rowsPerPage = 10; $pageNum = 1; if(isset($_GET['page'])) { $pageNum = $_GET['page']; } $offset = ($pageNum - 1) * $rowsPerPage; $_SESSION['From']=$_REQUEST['From']; $_SESSION['To']=$_REQUEST['To']; $sql = "SELECT * FROM daily_material_record LIMIT $offset,$rowsPerPage"; $result = mysql_query($sql); … | |
Im trying to run some codes i found of JDom for a home work (super hard to find good material) any way. I was trying to run it on NetBeans and I dont have the library " org.jdom " Anyone, can please give me the right link to download this … | |
Hi guys, I'm trying to create a php script that'll send information gathered from a form and send it as an html email with the info arranged in tables. Can't seem to get it to work. Here's the message part of the script (containing the table): [CODE]$to="o.oloyede@feeslimited.net"; $message=" <table width="500" … | |
i wish to create a cookie for an html form. I wish to get value from textbox(how do i do this). i wish to get the values displayed when i click the submit button my code [code] <html> <body> <form> <button type="button" name="rollno">rollno</button> <input type="text" name="rollno"> <br> <button type="button" name="name">name</button> … | |
Thank you for reading, I am currently trying to pass through a project or whole sites containing many pages to determine wether they are xhtml-strict or not with a local xhtml-strict.dtd file. I cannot go through a webservice it would be too overkilling for server and host might even probably … | |
Hi all, I have an XML File: staff_record> <staff> <username>user1</username> <password>password1</password> </staff> <staff> <username>user2</username> <password>password2</password> </staff> <staff> <username>user3</username> <password>password3</password> </staff> </staff_record> I have a form (login.html) and I need to use an ASP page (login.asp) to redirect the user to home.asp when they have successfully logged in, based on the … | |
Hi to all, I want to know that how to include one html file to another html file. I am facing problem in coding. Need coding for this purpose. With Regards, |
The End.