474 Posted Topics
Re: Try not having the html tags and the head tags! Browsers are amazingly versatile, and display more than just html. Plain text can be shown also. But WHY??? What's the point of your blank file? If it's index.htm and intended to prevent people knowing what is in a folder's file … | |
Re: Is the parent file also called something.php or is it something.htm ? Needs to be the former, not the latter. | |
Re: Why do you wish to do this??? Tables are for presenting data and that is what yours seems to be doing. It is NOT a list. Tables exist for a reason. Are you mis-interpreting the common, correct, statement that you should not use tables for layout? | |
Re: Normalise the data. Or the easier way, create an ERD, then work out which attributes with each entity. So you could give us a clue by stating what the dmr actually is, what the tuner is - what does it tune? engines, radio frequncies, etc. What do they do? Is … | |
Re: Every robot that visits the site and checks out a link results in a "download" to view the file. Webaliser does not distinguish between robots and normal users. Try awstats. much more believable data from that. | |
Re: You're doing research, and you are asking for a topic on a web forum??? Speed comparision mysql vs oracle on a 100,000,000 row table, with and without indexes The internal file structure of mysql vs oracle - a comparative study. Advantages and disadvantages of mysql over oracle and access as … | |
Re: these might help you. http://www.opencms.org/en/ http://www.opencms.org/en/support/tour/index.html | |
Re: I use the full url, as in http://sitename/images/favicon.ico where you just have images/favicon.ico | |
Re: Use the above code for just the laptop, then a separate if below that for the monitor, then a separate if for each of the others. You could use an array and loop through the array, with the same sort of print logic (only print if !=0 or if greater … ![]() | |
Re: Your first step, outside the loop, should be to print the the first two numbers that you are seeding the array with echo $prev[0]; echo $prev[1]; then continue up to your target value in the loop. but loop like htis for ($i = 2; $i < $nr; $i++) or you … | |
Re: try experimenting with easing on hovering, google it. | |
Re: The content in the header div is forcing that div to be wider than you want when you make the viewport width smaller. This then makes the content below your menu sit centered on THAT width while your menu contracts to match the viewport size. Split the content in the … ![]() | |
Re: Use the standard css3 method to get your box shadow. Then visit this site http://css3pie.com/ And use their behavior: url(PIE.htc); No need for images at all. The PIE file also lets you add other css3 effects for older versions of IE. Like text-shadow and broder-radius I do hope you are … | |
Re: google for free email form services. There are many, and they usually include an advert for themselves in the email sent. But as it is going to yourslef, that doesn't matter, does it? They give you a bit of code to stick on your pages. | |
Re: You have no need for the value column. Just a simple one column table, where status is a varchar. No need for joins, use it as a lookup table in queries to populate a drop down options box in a fomr a user completes. It's a common beginner's mistake to … | |
Re: Google gives me, for some sites with a similar amount of traffic about £1 / $1.60 a day. Ah - when I click on your menu items, I get thrown over to betting sites full page ads, I get anti malware advisors popping up saying don't go here. I get … | |
Re: Payroll and accounting on the web?!!! Totally insane and asking for major problems. If my last job had put my payroll details on a web server, I'd have been round banging on doors complaining like mad! Only a total newbie would dare to suggest such an idea. | |
Re: You might want to run your pages through the html validator... http://validator.w3.org/ | |
Re: Typical homework problem. First, you have to attempt it according to what you learned in class. Then we might offer advice. | |
Re: When you use a single gigantic word with no spaces in it, it forces the container to be wide enough to hold it. The word will not break in the middle at random and have the remaining letters on a new line. So you test is seriously flawed. You should … | |
Re: Query your database to collect the data Use PHP to create a standard list with nested lists of links. Create a standard menu Use css to hide the bits you don't want initially shown Use hover to reveal them. If you wish to use javascript, use something simple, tried and … | |
Re: Try using a tab delimited file instead. I update 64,000 rows every week using a tab delimited file and it works every time. Inventing your on type of csv file is never worth the effort when there are tried and tested methods. | |
Re: If you want to practice with mysql / php you need a web server to handle this. WAMPP and the like provide you with a local, private, test web server so you can do this. I use usbwebserver as it doesn't need to be installed and is totally portable on … | |
Re: If it is a site you own, you should have the development oroginal copy on your pc. If it is a site you are taking over to edit, use ftp to download the entire site. If it is a site you wish to examine that belongs to someone else, HTTrack … | |
Re: You have a table certificate with an attribute result_id and that appears to be a foreigh key from a table called result. But result only has a SINGLE attribute - result_id. Why are you storing this value twice??? The table result looks totally redundant to me. Also, you have department … | |
Re: Google search pagination in php There are plenty of standard ways to do this, using mysql queries and manipulating the limit option to pull sets of images at a time from the database. | |
Re: The html editor NVU is dead and has been for about four years, and was replaced with Kompozer which has a help forum (http://wysifauthoring.informe.com/forum/index.php) but that editor too hasn't been updated for a while, although the forum is active and helpful for beginners and occasional users. The author of NVU … ![]() | |
Re: I just created your table on my local server, moved the } in the while loop to AFTER the last ECHO, so I could see the row you used and a new row I inserted without entering a created_date. I got exactly the expected result - two sets of data, … | |
Re: You might just want to check that your host actually supports mysqli - I too recently decided it was time to expand my skillset and do things in what appeared to be the modern way. Pity that the web host I tried my new project on hadn't set the server … | |
Re: just replace IndividualFrequency in the second query with COUNT(*) !!! | |
Re: Pages will not load any faster in an iframe than if you simply opened the page in a new tab or replaced the existing page with the new page!!! Unless of ocurse you are only altering a few lines displayed. The data still has to be retrieved from the server, … | |
Re: To take data entered on a web page and put it in a database, you use a form and give the form and action - tell it to run a script when the submit button is clicked. The script then takes the data, connects to the database and runs an … | |
Re: You don't use myphpadmin (I think you actually mean phpmyadmin), you write a line of php and tell it to display the number it reads from the database in the format you want. The number will be stored in the database in the database's format, and that has nothing to … | |
Re: I've had data that had a ' in it a few times, and that caused me problems. I loaded the csv file into Excel, and saved it as text, tab delimited and the problem went away instantly. I've stuck to that method and delimiter ever since. | |
Re: Give the sub menu a high z-index - the Professional Education bit is sitting over the flyout menu. I set for cat ul z-index:50 and it worked, you probably don't need as high a value as that, but I didn't bother looking for a smaller answer. | |
Re: That's normal with floats. When you have a set of floats that have to line up, you discover that the next line hits the bottom of the tallest item in the previous line and stops there. The solution is simple - set a min-height based on the tallest item expected … | |
Re: Your site uses what is termed mystery meat navigation - areas that have to be prodded to find out what they are. This has been considered a bad interface for the last 10 - 12 years ! Enter the 21st century by giving them a normal navigation system. Next, you … | |
Re: Sounds like your homework to me ;) Who ever heard of a hospital hiring a beginner to create a database, when they almost certainly use one of the existing medical / patient databases that are available commerically. | |
Re: We need a bit more info as to the actual fields in each table before we can help. Also there is no need to prefix every table name with tbl ! Among other things it gets in the way of reading the actual name. winners, user, completerewards, rewards - so … | |
Re: First, Word is very VERY **VERY** bad for creating a web page!!! Use a proper editor (eg Notepad++) rather than something desinged to create a Word doc. Secondly, your links probably point at places on your hard drive, ie are absolute links. You may even have made the classic begginers … | |
Re: I'd change line 123... Post the url where we can all see it! | |
| |
Re: line 19 float:left AND position:absolute ??? There's no need for a semi-colon at the end of the last style rule in any css declaration, but having one avoids problems later if you add another rule, as then you might forget to add it. And solving this would be an awful … | |
Re: You have to use some programming language, usually PHP. HTML is just for mark-up (hence the name) - it isn't a programming lanaguage. To store the comments, you'll need a database - MySQL is the commonest one you'll find from web hosts. Then you'll use SQL, another lanaguage, to retrieve … | |
Re: Build a common basic page with your menu, header and footer in place, save it, then use that as the starting point for each new page, just altering the content and saving under a new name. You are imagining that many sites have a new page open within the home … | |
Re: > www.sarairannejad.com WHICH version of IE is giving you problems? Looks the same to me in FF, Chrome, and IE9 PS Hiding your navigation and requiring a click to reveal it is not user friendly. You're asking the user to think and many can't do that. | |
Re: run it through http://validator.w3.org/ trace the errors it mentions about div tags not being closed. (using an editor like notepad++ will show you when divs etc are not closed by color-coding things the wrong way) Oh, and it's broken at all viewport sizes I played with. | |
Re: If the only people who will see the results from the database are your dad and partner, then putting it on line presents an unnecessary risk of exposing customer details. If yo uhave to ask, you probably don't have enough experience yet to make it secure. If it is just … |
The End.