474 Posted Topics

Member Avatar for jwinslow

Most people use the son of suckerfish method, which you'll find at [url]www.htmldog.com[/url] Not sure what you're getting at with your second post. Late on a Sunday night, in my time zone, when your post was made, I tend not to look at the forum. So if you were expecting …

Member Avatar for drjohn
0
87
Member Avatar for Jansz36

You can't. They scroll and have a scrollbar, or they have no scrollbar and can't scroll.

Member Avatar for Jansz36
0
213
Member Avatar for SKANK!!!!!

[QUOTE=SKANK!!!!!;1201653]no, believe me. i work in firefox and its not required tos ay the least. im just really happy u dont understand! I feel like im the diamond in the rough![/QUOTE] The fact that you had to ask about html5 and the things you asked show that your knowledge of …

Member Avatar for unlimited071
0
598
Member Avatar for loveforfire33

ERD/normalisation are for database design. Nothing to do with programming - totally independent of it in fact. UML is for object orientated design. To do with programming. Two different subjects.

Member Avatar for griswolf
0
272
Member Avatar for ben.matthews18

give the links in your main nav a class or more normally, give the <ul> containing all the <li>s a class or id, and then stick the class/id name in front of your style declarations. eg <ul id="nav"><li>your nav links in here... then make the css like this first example, …

Member Avatar for karol33
0
256
Member Avatar for Onisutra

Between 0 and 9 works when the field is integer datatype. Who or what has a name that is an integer between 0 and 9. So the whole query just does not make sense. And then you admit that you have strings as names, so the datatype is probably char …

Member Avatar for drjohn
0
121
Member Avatar for willrose84

Also, the text got there because YOU put it there... Ardav's post above sums it up - most people try hard to include this for good reasons like accessibility. It's a bit like objecting to your car having brakes because you want to drive fast, not slow.

Member Avatar for drjohn
0
75
Member Avatar for LindaJ

Adding the meta tag <meta http-equiv="X-UA-Compatible" content="IE=7"> to the head will not break your site in IE7 and IE8, nor will removing it cure any fault in IE7. If the site was broken in IE7 with that meta tag, it was also broken without it - because only IE8 reads …

Member Avatar for LindaJ
0
98
Member Avatar for Elieson

Have a look at some of the jQuery solutions in this straightforward tutorial, as some of them do roughly what you are after. You don't need to uinderstand jQuery to use the pre-made solutions presented here. [url]http://www.webdesignerwall.com/tutorials/jquery-tutorials-for-designers/[/url] Alternatively, have a look at the accordian effect on any page other than …

Member Avatar for rajarajan2017
0
122
Member Avatar for GigsD4X

Every language has certain terms, called reserved words, that have a specific meaning. The answer is simple - do NOT use these words for anything other than their intended meaning. eg you would not give a column in a database the name table or create or if or while as …

Member Avatar for drjohn
0
332
Member Avatar for Onisutra

It looks as if your query is giving you exactly the correct results. If you want a count(*) then you need to use a group by condition, and also, amazingly, include count(*) in the original query. But in case you haven't noticed, the count for the two desired rows you …

Member Avatar for Onisutra
0
98
Member Avatar for Latent12

Identify the entities and the items of data that are being stored. Assign the items of data to each entity - you may discover one entity is actually two, or that two entities are actually the same thing. do this by using two highlighter pens and a copy of the …

Member Avatar for Shadiya
0
119
Member Avatar for shekar.bdn
Member Avatar for shaya4207

give the image a height of 100% and a width of 100% (or whatever numbers suit you. HOWEVER it will look distorted and pixelated

Member Avatar for MidiMagic
0
239
Member Avatar for fskreuz

SELECT * FROM userbooks WHERE book_title LIKE '%yourWord%' or book_title LIKE '%otherWord%'; alternatively if both words must be present. SELECT * FROM userbooks WHERE book_title LIKE '%yourWord%' AND book_title LIKE '%otherWord%'; is the correct way to do this. Similarly SELECT * FROM userbooks WHERE book_year LIKE '%33%';

Member Avatar for fskreuz
0
681
Member Avatar for xylude

Only the first condition should refer to the variable, the rest should really be along the lines of AND tablename2.id=tablename1.id AND tablename3.id=tablename2.id etc And you have to check your ERD to chain the tables in the correct order. Although JOIN terminology is the preferred way to express things, WHERE will …

Member Avatar for tyson.crouch
0
112
Member Avatar for saucy6969

There's nothing wrong when I view them in safari, chrome, firefox, IE5, IE6, IE7 and IE8, except for the Media page. When i run just the media page through the validator it throws up 48 errors, including unable to determine parse model. This might be becasue you only have half …

Member Avatar for saucy6969
0
208
Member Avatar for albertvn

What do you mean by the structure is not hierarchy??? A web site is a collection of html pages. IF there are several quite distinct sections, YOU might choose to put then in different folders, and have a menu with sub-sections. But YOU have to build these menus and these …

Member Avatar for Veneficae
0
112
Member Avatar for tyson.crouch

I notice you don't have a primary key, which would result in MySQL creating an index on the PK automatically. It looks like you are building a linking table and that the two fields mentioned are in fact a joint primary key. So if you made them a joint primary …

Member Avatar for tyson.crouch
0
122
Member Avatar for mverma

So WHY are you reviving a FOUR YEAR OLD thread on a completely different topic???

Member Avatar for drjohn
-1
51
Member Avatar for jamshed ahmed

[B]The query is returning the CORRECT data[/B] Because the join is on agentID and there is no link between the customer and the product, but there is a link between the agent and the TWO products. so the join of agent to product produces two rows, and EACH row then …

Member Avatar for jamshed ahmed
0
155
Member Avatar for loloy123

You never need a semi-colon after the last declaration, before the closing } - it's a weird rule, but it's true. However it's good practice to add a semi-colon, in case at a later stage you add another bit, as then the lack of a semi-colon will cause things to …

Member Avatar for sbmzhcn
0
84
Member Avatar for Mapper99

landing has a width of [B]760px[/B]. INSIDE it is contentMain, with a width of [B]950px[/B] contentNotMain is also inside landing and also has a width of [B]950px[/B]. So contentMain is forcing landing to be wider and sticks out to the right side of it. When I deleted the width declaration …

Member Avatar for drjohn
0
166
Member Avatar for leegeorg07

I'm not surprised you have nothing to show for this so far!!! I think you are in for a big disappointment! And I don't think you know what you are asking for either. The internet delivers data to each user, and they get a copy on their computer. There is …

Member Avatar for EvolutionFallen
0
101
Member Avatar for JamieY

Does a client have many projects does a client have many payments does a client have many notes does a client have many expenses??? OR does a project have many payments does a project have many notes does a project have many expenses? We can't tell with any great accuracy …

Member Avatar for JamieY
0
117
Member Avatar for vintageironman
Member Avatar for megaleagues

yes PS it's a popular homework question, pops up regularly in many forums, and at regular intervals. And it was in my course several years ago too.

Member Avatar for megaleagues
0
88
Member Avatar for ds2r

In other words it's a standard many to many relationship between orders and products, and so the standard linking table between orders and products is required, as described by urtrivedi .

Member Avatar for ds2r
0
134
Member Avatar for chandelarrow

and where exactly in the source code do you see the tag frameset????

Member Avatar for chandelarrow
0
92
Member Avatar for Kaycy

Tables were invented in html for displaying tables of data. People then tried using them to control the visual layout (yes, I admit it, when I was younger I did this too). Then in 1996, CSS came out, and by the end of the century, CSS was adopted by pros …

Member Avatar for Kaycy
0
177
Member Avatar for zerioni

You really do need chem_name to be declared as unique. There are no two chemicals with the same name (although there are alternative names for some chemicals - eg acetone and propanone are the same thing) This would then let the database engine do the work of checking for you. …

Member Avatar for zerioni
0
6K
Member Avatar for immortalvegan

Don't try to write your own cart! Use an existing script or free service. They all include a way to integrate a service such as PayPal or any of the other money handling services. There are literally thousands of such scripts and services around. If all you want is a …

Member Avatar for drjohn
0
130
Member Avatar for sasha_3

The second way is normalised, and great simplifies querying - you don't have to search multiple columns. Apart, that is, from your failure to recognise that product and component are a natural joint primary key. There is no need to add another unique identifier, as it will cause you problems. …

Member Avatar for drjohn
0
151
Member Avatar for jesikatt04

It's probably how you are building your query that's the problem. You have to start with a basic query, then for each checkbox that is checked, add the appropriate bit to the end of the query, then finally pass that to your database. so, something like this perhaps $sql ='select …

Member Avatar for tyson.crouch
0
100
Member Avatar for sufax

Also, it is very bad practive to colour code something to give it meaning. what happens when someone with a colour deficiency views the page? 8% of men have some form of colour blindness, and then you have the screen itself - one of my sites seems to have a …

Member Avatar for sufax
0
1K
Member Avatar for andross52
Member Avatar for smartness

Just how many rows are in the table? I've just run several similar queries on a remote database table with 62000 rows, and the variations I tried took from 0.093 to 0.171 seconds. No index on the columns I used.

Member Avatar for smartness
0
99
Member Avatar for LloydFarrell

I'd guess that your css file got lost on the way to your browser, or got corrupted in some way (and then the corrupted version got cached and keeps getting used on your local machine). you have the correct code to get rid of the list's dot - list-style:none; - …

Member Avatar for drjohn
0
222
Member Avatar for D4n1sD

Can't be done with PHP as it's executed server side and the result is then sent to the browser. You CAN do it with CSS or with Javascript however, by send the info and hiding it, then the CSS or javascript reveals the hidden info. If you visit the ukfolkfestivals …

Member Avatar for BzzBee
0
177
Member Avatar for questionary

And usually images are NOT stored in the database (even though it is possible). Usually you store the file name and location of the image file instead.

Member Avatar for drjohn
0
89
Member Avatar for Obelisk4

There are a few differences between oracle and mysql's dialect of sql. Usually extras each has added. The basics of sql are very very similar in each db however. That's the whole point of sql.

Member Avatar for Obelisk4
0
157
Member Avatar for newdave
Member Avatar for drjohn
0
100
Member Avatar for suncica2222

A link to the page so we can examine more than three or four lines of code will help! (although it does look like the reset should have helped)

Member Avatar for suncica2222
0
106
Member Avatar for PixelatedKarma

Looking at your code makes it all clear. It's the third <tr> from the left, which I've marked in red, that's the problem.

Member Avatar for diafol
0
104
Member Avatar for WebspoonUK

Only IE can read conditional statements, so you do not put the default css file in there, you put if before the conditional statement, and then bits in the css file loaded by IE will override the same bits in the default file. [code] <link href="../styles/main.css" type="text/css" rel="stylesheet" /> <!--[if …

Member Avatar for WebspoonUK
0
158
Member Avatar for lifeworks
Member Avatar for d5e5
0
83
Member Avatar for confusedCSS

You don't "get" css from anywhere, you don't "download" it, you don't have any "cost", it just IS. I.E. it's part of how web sites are built. It sounds like you need some tutorials on what css is and how to use it, and probably some basic html tutorials as …

Member Avatar for agbenaza
0
146
Member Avatar for ohgosh

You can only select the second row, or any other row, for a table in any meaningful way if you first sort the table on a given attribute. For example, you make a database of existing club members, adding them in this order of membership no. F2 F4 F6 F10 …

Member Avatar for know1stranger
0
4K
Member Avatar for prem2

to get reduce the number of joins required, when one of more queries continually need the same join.

Member Avatar for debasisdas
0
51
Member Avatar for nonshatter

If you've done it, tell us what you did and we can tell you if you are right or wrong (your original post has errors)

Member Avatar for nonshatter
0
123

The End.