109 Posted Topics

Member Avatar for PsychicTide

Hello fellow daniwebians, I seem to have run into a problem echoing MySQL/HTML and am hoping one of you may be able to point me in the right direction. I'm trying to echo portions of HTML(if there is an event for that date) inside HTML that's not echoed, so it …

Member Avatar for PsychicTide
0
150
Member Avatar for KunalBhatia

May want to look into using Memtest 86+. It will test your RAM to make sure it can handle what it's supposed to. [url]http://www.memtest.org/#downiso[/url] (haven't tried this download location yet)

Member Avatar for skilly
0
301
Member Avatar for manc1976

[url]http://php.net/manual/en/language.operators.string.php[/url] let me know if you have any specific questions.

Member Avatar for diafol
0
89
Member Avatar for Stickie

If you order a query using multiple columns the ASC or DESC clause needs to be specified after every column name. IE: [CODE]order by k.Naam ASC, s.Aantal_Manden ASC, m.Aantal_Duiven ASC";[/CODE]

Member Avatar for Stickie
0
407
Member Avatar for Eldyvoon

I notice that you have the code for the footer, but it doesn't seem to be showing up... very odd. May try to fix your validation first to make sure all elements are opened and closed properly. [url]http://validator.w3.org/[/url]

Member Avatar for PsychicTide
0
37
Member Avatar for Stickie

I'm not sure I totally follow what your trying to do, but I'm guessing you want to somehow link all tables together and then display all data. For this you could join the tables together using the 'combination' table for all attribute links. IE: you want to link all the …

Member Avatar for PsychicTide
0
185
Member Avatar for masterjiraya

I'm not sure I'm understanding where the problem is occurring... It is when you try to add several check-boxes of the same ID element into one MySQL column/field it doesn't work? if so, try making the element ID an array...[url]http://www.evolt.org/node/60222[/url] Be sure to read all the comments after the explanation. …

Member Avatar for masterjiraya
0
170
Member Avatar for Nahiyan
Member Avatar for ddymacek
0
91
Member Avatar for codeorder

Javascript can't directly interact with the database (it's client-side code, you need server-side code executed) This is just a suggestion, but you could use a form of AJAX to call a pre-made PHP page and pass a variable to that page. I haven't tested this out yet, but the basic …

Member Avatar for codeorder
0
181
Member Avatar for PsychicTide

Hey guys, I'm having some trouble setting up a form to delete a specific row in my database table. Here is the idea: I have one page that makes looping calls to MySQL for a query result, at the same time I print out the html as I need to …

Member Avatar for PsychicTide
0
476
Member Avatar for PsychicTide

EDIT* Sorry I didn't mean to add that error message in the topic title. Hey guys, I'm new to PHP and MYSQL and I have been searching for hours for a way to copy the data from a row in one table (all columns) and insert it into another table …

Member Avatar for PsychicTide
0
200
Member Avatar for PsychicTide

Hey guys, I've been struggling with a recent video card issue which causes my new video card (256MB Nvidia GeForce 7900 GS) to flicker several times per hour no matter what I'm doing (flickers last about 1 second and it doesn't seem to hinder processing or game-play). I would greatly …

Member Avatar for jak0b
0
225
Member Avatar for MDanz

[CODE] function takeBack(newestDivNumber) { var one = document.getElementById('parentDiv'); var two = document.getElementById('newestDivNumber'); one.removeChild(two); }[/CODE] Let me know if it points you in the right direction.

Member Avatar for PsychicTide
0
104
Member Avatar for svatstika
Member Avatar for PsychicTide
0
57
Member Avatar for PsychicTide

Hey guys, I ran into a bit of a problem and I'm hoping I'm just writing the embed wrong. I'm unable to re-size a .mp4 movie... If I go larger with my width/height it just creates white space around the movie (Example: if I increase both width and height, the …

Member Avatar for PsychicTide
0
110
Member Avatar for iLoveNoodle

Not sure if it helps, but you can check out the Adobe BrowserLab if you don't want to download anything. It has several different browser types to choose from including side-by-side comparisons. The only drawback is that you can't test usability on JavaScript/other dynamics functions. Signing up for an Adobe …

Member Avatar for drjohn
0
135
Member Avatar for spin

Hmm I have a few ideas on what the problem is, but first I need to know a little more information. Have you tried to connect to an FTP server and got the same result? Have you updated all of your qualified vendors lists? My thought is that this has …

Member Avatar for spin
0
685
Member Avatar for AngelicOne

You would just have to use some escape characters. here is a list of escape characters... [url]http://www.theukwebdesigncompany.com/articles/entity-escape-characters.php[/url] Your code would be [CODE]"&lt;hr&gt;"[/CODE] instead of [CODE]"<hr>"[/CODE]

Member Avatar for diafol
0
85
Member Avatar for ds2r

How are you setting up the height, width, and positioning of your divs? Percentages maybe? It would help if we could see some of the code that's causing the problems.

Member Avatar for macneato
0
61
Member Avatar for MDanz

Why not use some javascript/CSS to uncover a hidden div when the onclick action occurs. For instance... Javacript [CODE] <script type="text/javascript"> var menuItem = 0; function open(element) { // close old div if open if(menuItem) menuItem.style.visibility = 'hidden'; // open hidden div menuItem = document.getElementById(element); menuItem.style.visibility = 'visible'; } </script> …

Member Avatar for PsychicTide
0
893
Member Avatar for Caled

It would help if you could post some of the source code your using. Can then maybe evaluate the logic a bit more.

Member Avatar for Alex_
0
83
Member Avatar for saucy6969

everything looks fine to me on every browser except IE8... I'm assuming that's what your viewing it from? If so there are a couple quick fixes you can use... CSS hacks or conditional statements are always an option(several of them... I can provide links if needed, but google should take …

Member Avatar for saucy6969
0
68
Member Avatar for dan_t

I'm guessing your trying to have a customer send an email to a designated email address? Why not setup an HTML form to collect the data (such as a small subject area and a large message area). and then use a PHP4/5 mail() function. have a look at this. [url]http://php.net/manual/en/function.mail.php[/url]

Member Avatar for dan_t
0
92
Member Avatar for PsychicTide

Hey guys, ran into a bit of a problem with a CSS/Javascript drop-down menu... in IE7 I can see the menus and names just fine and everything works well, but in Firefox I can't see anything at all happening... the divs simply remain hidden. Anyone who has a free sec …

Member Avatar for PsychicTide
0
175
Member Avatar for PetrQ

Instead of using an array (which is usually for a fixed amount of objects) you may want to look into a linked-list method. As for the mySQL problem I wish I could help you... I hope me posting this response doesn't keep others from looking at this.

Member Avatar for cloudgen
0
938
Member Avatar for adaykin

I hope this is what your looking for... [url]http://www.daniweb.com/forums/thread201130.html[/url] Let me know

Member Avatar for PsychicTide
0
100
Member Avatar for Nitroxxerz

You should search through the forums a bit more :) . [url]http://www.daniweb.com/forums/thread133150.html[/url]

Member Avatar for amitrail
0
166
Member Avatar for daniellamae

What do you mean "starting to open"... you mean booting up your PC or opening the lid while its already on? If it's the 1st option you could run the diagnostics portion of your windows disk to check hardware. If it's the 2nd option it could be a number of …

Member Avatar for goldeagle2005
0
120
Member Avatar for altf2junkie
Member Avatar for prisonpassioner
0
150
Member Avatar for jamesp1692

Sounds like your display driver was removed or something... do you know what type of video card you have? As for the virus, you can try a number of free scans such as Spybot Search & Destroy, and the free version of Ad-aware AE (both free and find different types …

Member Avatar for crunchie
0
310
Member Avatar for toothee

Just found this post... hope it will help [url]http://www.khattam.info/2009/04/21/could-not-open-installlog-file-problem-solved/[/url] Could also try reinstalling the program to create a new install log to then uninstall the program if you can't find one...

Member Avatar for Suspishio
0
111
Member Avatar for Bhilal

What version of IE are you using?... it seems to work fine on FF3 and IE7 for me.

Member Avatar for essential
0
119
Member Avatar for jen140

Why not just make a switch/case or simple variable statement? If true = one string, If its false = another string.

Member Avatar for jen140
0
249
Member Avatar for Tombo007

Hmm. I have a couple ideas, but I need some more information (I've had a similar problem in the past). Could you list off your system specs? When I had this problem it was a combination of faulty 32x drivers (instead of 64x) and not enough power being supplied to …

Member Avatar for nickguletskii
0
168
Member Avatar for ricker

As a rule of thumb I always do everything on a router through a LAN connection because of this, but it won't lock you out completely [most likely] (I've done this on a WRTG model). Just use the generic log-in (admin, admin). If at all possible stay on a land …

Member Avatar for nasram
0
115
Member Avatar for nigelburrell

As far as I know one of these will show the system time instead of server... [url]http://www.sivamdesign.com/scripts/clocks.html[/url]

Member Avatar for nigelburrell
0
89
Member Avatar for sonia sardana

For large sets of numbers you could setup the list to be from smallest to biggest then check the middle number of the list. If the middle number is higher (or lower) than the newly generated one then you know which half of the file its on... you can then …

Member Avatar for sonia sardana
0
254
Member Avatar for Alexandre11

Have a look at this... easily modified [url]http://pixelspread.com/blog/289/css-drop-down-menu[/url]

Member Avatar for stevenpetersen
0
97
Member Avatar for FlashCreations

Have a look at this... [url]http://javascript.about.com/library/blscreen2.htm[/url] [url]http://javascript.about.com/library/blscreen3.htm[/url]

Member Avatar for FlashCreations
0
416
Member Avatar for postal07
Member Avatar for PsychicTide

I've recently built a new PC and decided... what the hell, I'll get an OS that causes baldness... Windows Vista Home Premium 64bit. So far it has locked up two times for no reason and restarted my PC completely (I want to catch the problem before it could possibly get …

Member Avatar for PsychicTide
0
160
Member Avatar for Jev181

I think I see the problem you speak of in IE7... the top of the tower is broken from the main image? It looks as though you have used little CSS. May want to try a CSS reset file... this one is from yahoo, just add it to your header …

Member Avatar for PsychicTide
0
112
Member Avatar for MxXx

Sounds like some broken silicone or maybe the metal pins aren't touching to the USB connectors (or maybe they are too damaged to send proper signals)... When it comes to physical damage there is little hope. Just attempt to bend it a bit more back into place :) Do you …

Member Avatar for MxXx
0
129
Member Avatar for silverflame01

I've had this same problem in the past, however, this may not help you. All I did to fix this problem was reinstall Google Chrome... that simple :). From what I understand it has to do with how either program handles your cookies... whether its EI or Chrome or.. well... …

Member Avatar for PsychicTide
0
80
Member Avatar for stbtwitter

You could use a script to get the the users window height then make an iframe or div that will take up a certain percentage of that size dynamically. or maybe load the page already scrolled down to the bottom (although it would hide the menu then).

Member Avatar for drumichael87
0
106
Member Avatar for tadisaus2

Not sure if I understand what your asking. If you want to find out what background color a website is using you can either look at the html/css, use the firefox plug-in called firebug to inspect a particular element, or take a screenshot then go into a program like Photoshop …

Member Avatar for aashishn86
0
166
Member Avatar for Lib Auth

I personally agree with MidiMagic. I learned alot of my code by looking at the source of other pages. However, you can use javascript to prevent from right clicking. [url]http://www.java-scripts.net/javascripts/No-Right-Click.phtml[/url]

Member Avatar for kvprajapati
0
84
Member Avatar for teshi

You could use CSS or any number of javascripts to accomplish this... just google drop down menu and you'll find what you need.

Member Avatar for MJ Pieterse
0
371
Member Avatar for sephoria

This may not answer your question... I'll try to make it as simple as possible I suppose. The whole point of CSS is just a way of making sure all of your pages are the same as your other pages (pretty much templates). If you understand how to set up …

Member Avatar for itsjareds
0
85
Member Avatar for u8sand

As far as I know there is no firefox equivalent for the CSS style filter, its only for MSIE5+ browsers (I could be wrong). There are several things you can do though... put in a background image, make the actual text an image, use CSS dropdown shadows, etc... ...code for …

Member Avatar for u8sand
0
80

The End.