Posts
 
Reputation
Loading chart. Please wait.
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
0 Endorsements
Ranked #4K

16 Posted Topics

Member Avatar for loligator

Hello all, I'm new to CSS layouts and am trying to create a two column layout within a wordpress page. The left and right column line up as expected until I add border-left and padding into the mix found within div#mediaPhotos. After adding it, the right div is still on …

Member Avatar for Helianthus
0
136
Member Avatar for loligator

Hello all, I have a feeling this is easy to deal with (at least I hope so) but couldn't find much on google, probably because I'm not 100% sure how to word it. Here goes... We all know how there's different representations for apostrophes. There's the ’ character and then …

Member Avatar for sneldog
0
232
Member Avatar for loligator

IE tells me there's an error on line 17, which is the onload method of the body tag. So here's the code... [code] <script language="javascript" type="application/javascript"> function startUp() { setFocus(); } function setFocus(){ document.frmSearch.txtSearch.focus(); document.frmSearch.txtSearch.select(); } </script> [/code] And here's how it's called: [code] <body onload="startUp();"> [/code] I tested this …

Member Avatar for loligator
0
2K
Member Avatar for loligator

So here's the code: [code=php] function procRestSearch($searchQuery){ //Don't forget to have $searchquery defined before calling this function $intSearchCounter = 0; //Used to set the arrays $searchResult = mysql_query($searchQuery); while($searchRow = mysql_fetch_array($searchResult, MYSQL_ASSOC)){ //Change/Add/Delete the variables below to match what data needs to be returned $strRest = array($intSearchCounter => array('restID' => …

Member Avatar for nav33n
0
165
Member Avatar for mrjoli021

if you're trying to give the page an ajax feel (without actually doing the ajax), i'd look into doing an iframe and setting it to not be visible via CSS. This way, you're technically sending the data to another page but it appears as if you aren't... there's lots of …

Member Avatar for diafol
0
2K
Member Avatar for joshfolgado

[url]http://www.builderau.com.au/architect/database/soa/Road-test-Four-databases-tested/0,339024547,339224962-7,00.htm[/url] this isn't exactly what you're looking for (it compares ms sql express to the others and uses an older version of mysql) but it's a start. I've used mysql and ms sql a bit and although ms sql is easier to manage due to it's GUI, I find mysql …

Member Avatar for joshfolgado
0
143
Member Avatar for loligator

Hi all, I want to store the hours of restaurants in a database (sounds simple, right?). I don't want a text field where hours are entered as a lump of data, but was thinking of making a column for each day of the week and filling in the hours this …

Member Avatar for loligator
0
190
Member Avatar for loligator

I have mySQL 5.1 installed on a Windows Vista machine. I'm really curious as to where the file lives that holds the databases I created. I'm assuming it's in the mySQL install directory but I just don't know where (C:\Program Files\MySQL Server 5.1\?). Does anyone know?

Member Avatar for nav33n
0
95
Member Avatar for Nemzz

[QUOTE=Nemzz;796206]It keeps freezing and gives an error something like Kernel Trap followed by gibberish numbers. This is just lately. WTF is wrong with it ?[/QUOTE] this could be tons of different things. firstly, try booting off of your OS X install CD and run Disk Utilities, then repair the file …

Member Avatar for amanuensis
0
122
Member Avatar for gbloake

i don't know how much of a hassle this would be for you, but an easy fix might be to just create a new account and transfer all of your files over. it sounds like your keychain is corrupt and off the top of my head, i'm not sure how …

Member Avatar for guido79
0
108
Member Avatar for miracle416

[QUOTE=miracle416;796915]I tried that with the PC Security Suite that I purchased but it keeps telling me I don't have enough memory and when I go to delete programs and files that I don't use or need it doesn't change the amount of memory. When I restart the computer all the …

Member Avatar for Frank Wallis
0
113
Member Avatar for spunkyninja

also check to see if you knocked the ram loose. i would suggest reseating it anyway. ram issues can cause the computer to turn on and literally do nothing... black screen, no beeps, etc. however, the fact that you said it turns itself off then back on makes me think …

Member Avatar for loligator
0
92
Member Avatar for harro

sounds like your cd drive might be busted, the cables bad/loose, or possibly if you're burning the CD from an image, the drive you're using doesn't like that brand of blank CDs. I've had that happen on several occasions and once I used a different brand of blank CD, all …

Member Avatar for harro
0
326
Member Avatar for Blackeagle

you don't need to disable the cdrom in device manager. as for changing bios settings, most modern computers will boot from either cdrom drive without having to enter the bios and change any settings. did you try just putting the cd into the burner and seeing if it boots? i'd …

Member Avatar for loligator
0
125
Member Avatar for loligator

So this is one of the strangest issues I've seen... I have a Windows 2000 Server box with SP4 plus all recent Windows updates. I'm not sure when this started (the server is a backup and isn't often used), but after being on from anywhere between several hours to a …

Member Avatar for loligator
0
266
Member Avatar for loligator

I'm pretty much a newb when it comes to PHP and MYSQL (taught myself, so I make a lot of mistakes :confused: ) So here's the code... [code] $query = "SELECT DISTINCT(t_tag) FROM tags ORDER BY t_tag desc LIMIT 50"; $results = mysql_query($query) or die(mysql_error()); while ($row = mysql_fetch_array($results)) { …

Member Avatar for MVied
0
208