Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. thumbelina

    Uploading files

    Hi, I'm trying to upload files from a web site using PHP. I've tried copying code from several sources, but none of it seems to work. Does anyone have any suggestions for me. Thanks!
  2. thumbelina

    table formatting

    The div tag worked out pretty well but to keep the rest of the information from running over it I had to use this: <table> <tr> <td> rest of site here </td> <td width=&quot;175&quot;></td> </tr> </table> Just thought you would be interested in knowing what worked.
  3. thumbelina

    table formatting

    Using a table is the best way I know to do this but I think that there might be a better way. I want to create a coloum 175 pix wide that runs down the right hand side of the page. Leaving the rest of the page to what ever width the users browser allows for. I think using div tags might be a...
  4. thumbelina

    Links within one pic

    I have one large image that I want to set up so that clicking on different parts of the image will lead you to the different pages of my website. I have seen it done on other websites but when I viewed the html code it was hard to follow to figure out how it worked. Does anyone have any idea of...
  5. thumbelina

    Is C++ is good for game developing?

    Some schools also package C++ with the text books that they use to teach it. Check College book stores. I got Visual C++ and a text book for less than $100 Canadian.
  6. thumbelina

    php not connecting to mysql

    Make sure that you told PHP that you are running MYSQL. Or is that the other way around? I'm sorry I'm not a server person but I do know that has to be done for it to work.
  7. thumbelina

    PHP3

    anyone know the differences between php 3 and 4 or where i can find info about 3?
  8. thumbelina

    PHP without a database

    ok I know this is going to sound silly, but. All of my PHP experience is using MYSQL with it. Now I have access to php but not to any kind of server side database. I want to keep working with PHP but all the info I ever saw on it was with a database. So where can I find info on PHP uses without...
  9. thumbelina

    Display search results

    I'm using a mysql database with php on the website to build a search engine for the company library. I can get the select qury to work that to work that brings back the results &quot; select * from table were $field = $requested&quot; now i know i need to use the mysql_fetch_array command but...
  10. thumbelina

    Problem with autoincrement

    I think to reset the auto_increment values you have to either drop the coloumn off the table, or maybe drop the table itself altogether. I'm not sure how the table will react to you adding a primary key like that, since a primary key can't have a null value. Why do you need to reset the vaules...
  11. thumbelina

    Archiving information

    The seperate table for the archived information is a very good idea,thanks. I was actually thinking about having the database only archive information once a year, this way there would be at all times in the system: up to this point of the present year, and all of the previous two year. I am...
  12. thumbelina

    Archiving information

    I have a problem where my table will eventually become to large to run efficently. I have come to the conclusion that the best thing to do is to archive all records over two years old. I need to know how to set up the archive and how to let someone access it if they need to look back further...
  13. thumbelina

    search engines

    I'm not really sure where to start on this one, but I need to create several search engines, one for each of 2 databases. The problem is that within each database I need to let them search by one of several different fields. For example one database maintains a small library, so they need to...
  14. thumbelina

    mysql UPDATE syntax...

    I'm not sure my solution is the best. It was just the best suggestion I could give based on what you asked. I'm afraid that I'm not an expert either, but you know you might get better help if you put this question in the php fourm, cause i think your problem is with the php code not with your...
  15. thumbelina

    mysql UPDATE syntax...

    with in your loop that does your multiplying you are going to have to update the record right away before it goes on to the next record. That should work.
  16. thumbelina

    Creating a database from scratch

    I think you are going to need do some serious resarch into database design concepts. Might help you make the database run more effiently. Most text books that teach how to use a specific application covers the basics in database design.
  17. thumbelina

    GREAT PROBLEM : Stored procedure with parameters

    I think that this is more a problem with your vb code than with your sql statment. maybe if you asked in the vb fourm someone could help you there. good luck.
  18. thumbelina

    from query to text box

    I'm sorry but I don't understand. Maybe if you show me the code for the part that you put in the text box value I would understand better what you are saying. Thanks.
  19. thumbelina

    Is there a max table size?

    I have been doing some reading of my own and everything I have read sugests that storing images directly is not recomended. To store them you have to set the field to blob, which only supports text so you then have to convert your image back and forth between a text format to prevent corruption...
  20. thumbelina

    from query to text box

    If I get results back from a query when a display detials button is pushed, how do i get the results of that query to display in the text boxes in my form? I have one text box for each field in my record and the query only returns one record.

Part and Inventory Search

Back
Top