6,574 Topics

Member Avatar for
Member Avatar for virtualmisc

I am a beginner in html. I wanted to make a page in xhtml. So does changing all characters in html code to lowercase make it Xhtml?

Member Avatar for cfajohnson
0
82
Member Avatar for akie2741

my code is: [CODE] import urllib import urllib2 import re #get URL urla='http://www.sc.iitb.ac.in/~bijnan/personal-details.htm' #connect to this website request=urllib.urlopen(urla) #get html file from this website html=request.read() #get the address from above html file print html [/CODE] How can i find all his addresses in this html,can use the re.complie() method to …

Member Avatar for djidjadji
0
97
Member Avatar for drewjj

Hi People, Hope some body can help I have been pulling my hair out over the last few days trying to figure this out!! Problem: I have narrowed the problem down to a <div> with a 2 floating images and float <ul> <li> as my menu. When the inner wrap …

Member Avatar for Troy III
0
107
Member Avatar for MikeGore

Hi, I am looking for a program or an online website or whatever, that will convert my asp.net, .asp and .aspx files to html. I have searched the web but couldn't find any. I would really appreciate your help. Thanks, Mike

Member Avatar for Ramesh S
0
98
Member Avatar for Aamit

Hi,This is my php file. I want to [COLOR="Red"]replace [/COLOR] [COLOR="Green"]$$FullName$$ with Jon Rama And $$FirstName$$ with Jon and $$Gender$$ with Male[/COLOR] And [COLOR="Red"]create to new file Jon_Rama.php[/COLOR] [code] <table width="100%"> <tr> <td align="center"> <b> <h1 class="title_list">$$FullName$$</h1> </b> <br><br> </td> </tr> <tr> <td>$$FirstName$$ is a $$Gender$$.</td> </tr> </table> [/code] How …

Member Avatar for almostbob
0
269
Member Avatar for Aamit

Hi,This is my php file. I want to [COLOR="Red"]replace [/COLOR] [COLOR="Green"]$$FullName$$ with Jon Rama And $$FirstName$$ with Jon and $$Gender$$ with Male[/COLOR] And [COLOR="Red"]save or create to new file Jon_Rama.php[/COLOR] [code] <table width="100%"> <tr> <td align="center"> <b> <h1 class="title_list">$$FullName$$</h1> </b> <br><br> </td> </tr> <tr> <td>$$FirstName$$ is a $$Gender$$.</td> </tr> </table> …

Member Avatar for cwarn23
0
112
Member Avatar for motionfiend

Hello all, While attempting to switch from a hard-coded array to a dynamic array read from a db table, I'm running into a few snags. I'm using the following function to create the dropdown menu, and it has worked for everything thus far: [CODE]// function showDrop($array, $active, $echo=true){ $string = …

Member Avatar for Rkeast
0
196
Member Avatar for bugatha1

I recently moved from JDK1.3 to JDK1.5 and find that the display of parameter listings in javadoc output is now hard to read. The lines are too close together. I think this has to do with the fact that the doctype at the top of each HTML page has changed …

0
117
Member Avatar for akie2741

How can i extact the personal address from html file.. After i get the source from the html file using read() method,what pattern should i consider if i wanna extact the address? Currently i think is use the compile() method to set the matching the address' pattern, but what rule …

Member Avatar for jice
0
140
Member Avatar for akie2741

My code is: [CODE] import re import urllib import urllib2 webURL="http://www.sc.iitb.ac.in/~bijnan/personal-details.htm" #the website is connect=urllib.urlopen(webURL) #connect to this website htmlDoc=connect.read()#get the html document from this website patternIN="Permanent Address" # Where to begin to keep the text patternOUT="</tr>" # Where to end to keep the text (after the begining) keepText=False # …

Member Avatar for vegaseat
0
159
Member Avatar for pansen24

i m doin something like: editorPane.setPage(urlString); i m using this function for displaying a webpage. now i used hyperlinklistener so when i click on link it goes to pointed url.but i m not able to use other component of the page like Buttons,checkboxes,Submitbutton.Can you explain how to do it?

Member Avatar for quuba
0
110
Member Avatar for veledrom
Member Avatar for Venom Rush

Hi all A clients website has been and I'm trying to figure out how this could have happened. Any ideas how HTML/framer could have been placed on the server and how to remove it? I've found lots of threads on how to remove it from a personal computer but nothing …

Member Avatar for jholland1964
0
195
Member Avatar for jamesrobb

How can I extract repeated paragraphs of data from an html document. Every paragrahp is preceded by the line: <p><i>Summary as passed House:</i> <br> Thanks.

Member Avatar for sknake
0
766
Member Avatar for serkan sendur
Member Avatar for xuexue

now, i already have a running pagination using php, but i want it to be more eye-catchy, instead of using words or links, i want to use images, like the one's here in daniweb, wherein numbers are enclosed in a box, how will i do that? thanks in advance...

Member Avatar for pritaeas
0
184
Member Avatar for dado.d

I made fisheye menu in css. It is expanding to right site, how to make to expand to left side? [CODE]<!DOCTYPE> <html> <head> <title>Pure CSS Fish Eye Menu</title> <style type="text/css"> .expand-up { height:100%; width:600px; text-align:left; background-color:#000000; font-size:12px; } .expand-up ul { margin-left:10px; } .expand-up ul li { float:left; list-style-type:none; padding-top:5px; …

0
87
Member Avatar for anbushiva

Hi, i am new to this forum after seeing different valuable replies i am posting my query.. Need a HTML script that can define the background color a text with respect to time.. for ex. i have some five texts say 1hr,2hr,3hr,4hr,5hr. Now my script should check the local time …

Member Avatar for kylegetson
0
124
Member Avatar for rubyscye

Hi all, not sure if this is the right place, but i'll give it a go I need to create a short survey, 7 questions all likery scale (1-5) with some comments blocks. Making the form using HTML form controls i understand just fine... here's where i am a bit …

Member Avatar for cguan_77
0
83
Member Avatar for sulkhanz

Urgent help needed. i am a newbie, and starting to have a headache with this problem, i am using form to enter firstname so that all the details of that person can be pulled. where am i doing it wrong? its showing me the headings of firstname, lastname, and age …

Member Avatar for sulkhanz
0
118
Member Avatar for j_limboo

the php process the page once the vistor clicks on the php based link they go to iframe where it is html. I was looking for a function where I can insert a link call go back to the link and that sould be in html on the frames

Member Avatar for j_limboo
0
108
Member Avatar for Terry56

Hi to al :)l, Hope all will be fine. I want to include a link in the alert method.I tried this [code=JavaScript] alert("Please enable your java to experience this enhanced page." + '<a href="http://www.java.com/en/download/index.jsp" target="_blank">Free Download Java</a>'); [/code] But this will not made a link it shows all as it …

Member Avatar for almostbob
0
283
Member Avatar for sreeram01

Hi, I am trying to get the html source of the particular webpage that having different frames.i want the html source of a particular frame. Thank you in advance

Member Avatar for CodeDoctor
0
115
Member Avatar for AdventDeo

Ok so I have two separate AJAX function that I want to combine but have no idea how. The first 2 files are to call up a table with cells in the form of text-boxes, and the last 2 files are linked dropboxes. What I want to do is to …

Member Avatar for AdventDeo
0
121
Member Avatar for j_limboo

Got stuck How to make $newUrl a hyperlink in a different html page new to php code [CODE] <?php if (!isset($_GET['p']) || empty($_GET['p'])) { $_GET['p']=0; } if (empty($_GET['q'])){ echo "What are you doing?"; } else { /* getting value from the search form creating a new variable*/ $ser = $_GET['q']; …

Member Avatar for j_limboo
0
260
Member Avatar for redserpent7

[B][COLOR="Red"]Important:[/COLOR] [COLOR="Green"]Please read the whole question before answering.[/COLOR][/B] I would appreciate it if someone can guide me to the new MS APIs necessary for modifying/controlling the Windows 7 Action Center. What I need to do is integrate the Backup notification messages in my application which is a backup application in …

0
146
Member Avatar for Ashwin Vasnai

some body help me.I want to know how to put the dropdown list from database at my textbox cursor. full problem definition is like this. I want to create a Hint system for SQL which will give the structure of of Query. for example if user enters trigger he will …

Member Avatar for Ashwin Vasnai
0
138
Member Avatar for Mapper99

I have created a PHP page using CSS for styling. It looks great in IE. However, in Firefox, it is just a mess. Here is the link to the page: [url]http://www.laudontech.com/temp/pceditor.php[/url] Any ideas? Should I develop for Firefox, then try and fix for IE? Or, the other way around? Thanks …

Member Avatar for Mapper99
0
163
Member Avatar for shermsinc
Member Avatar for Muazam

Hey, htmlentities doesn't work in this code of mine, someone know why? Check line 11-14 Thanks. [code]<html> <head> <title> Welcome <?php echo $_GET['name']; ?> </title> </head> <body bgcolor="<?php echo $_GET["favcolor"]; ?>"? <h1> Welcome <?php echo $_GET['name']; ?> </h1> <br /> <?php foreach ($_GET as $key => $verdi) { $verdi = …

Member Avatar for Muazam
0
148

The End.