Posts
 
Reputation
Joined
Last Seen
Ranked #4K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
2
Posts with Upvotes
2
Upvoting Members
2
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
2 Commented Posts
0 Endorsements
Ranked #14.9K
Ranked #2K

9 Posted Topics

Member Avatar for mgn2683

If I understand you right, then maybe a query like: [code]SELECT candidate FROM tablename WHERE team='$team'[/code] Would pull a list/array of all candidates from a given team. If I understand you wrong, then it might help if you could post your table schema.

Member Avatar for Aamit
0
158
Member Avatar for Darkmystery

You might want to take a look at [url=http://www.cplusplus.com/reference/clibrary/cstring/strtok.html]strtok[/url].

Member Avatar for Darkmystery
0
161
Member Avatar for nilmin

Like salem said, you would be better off with a decent compiler such as gcc. If its not a problem with your compiler, then I'd guess you are not linking the library properly. Its been a while, but I had a play around with libpng once I dumped the code …

Member Avatar for mike_g
0
145
Member Avatar for danishbacker

It seems that you are not increment the id maybe add an increment to your loop? IE: [code]$id=1; $count = mysql_num_rows( mysql_query("SELECT image_id FROM imagetable") ) $data = mysql_query("SELECT * FROM imagetable ORDER BY image_path ASC") or die(mysql_error()); while($info = mysql_fetch_array($data)) { $sync = mysql_query("UPDATE imagetable SET image_id = $id …

Member Avatar for danishbacker
0
262
Member Avatar for tiger86

Yes, but AFAIK it would require a little scripting. You could save the style in a cookie, then select a stylesheet based on the value when the page loads.

Member Avatar for MelechM
0
354
Member Avatar for mikedd

If I was doing this I think I would use sprintf to convert the numeric result to a string then parse the characters building the words from it: [url]http://www.cplusplus.com/reference/clibrary/cstdio/sprintf.html[/url]

Member Avatar for Salem
-1
195
Member Avatar for riahc3

You should be able to store the data for each card within an integer. You could then get the suit as card / 10 and you could get the rank as card % 10. I find this approach simplifies things a little. You could then have an array size 40 …

Member Avatar for jephthah
0
149
Member Avatar for Member #321605

Apparently when using z-index you are meant to specify an absolute position, but it also works with a relative position. Maybe try: [code]#logo{ position: absolute; width: 100%; height: 80px; font-family: arial, verdana, sans-serif; font-size: 80%; background-color: #000000; z-index: 1; } #header{ position: absolute; text-align: right; z-index: 2; }[/code] The display …

Member Avatar for MidiMagic
0
146
Member Avatar for Traicey

You can connect to a database with any of those languages; not positive about vb.net, but I would expect so. From your description it sounds as if youre developing a POS system, which is something I am currently doing. In which case I'd look mainly at how you are going …

Member Avatar for mike_g
0
117

The End.