- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 2
- Posts with Upvotes
- 2
- Upvoting Members
- 2
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
9 Posted Topics
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.
You might want to take a look at [url=http://www.cplusplus.com/reference/clibrary/cstring/strtok.html]strtok[/url].
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 …
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 …
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.
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]
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 …
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 …
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 …
The End.
mike_g