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 SkipVought 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. Dhagaxtuur

    php include + variable

    Why don't you set the variable in the included file it self.
  2. Dhagaxtuur

    Auto Refresh

    I forgot to mention, change the url to your own. www.pctalknet.com
  3. Dhagaxtuur

    Auto Refresh

    Insert this line in the head section of your html page: <META HTTP-EQUIV="refresh" CONTENT="1;URL=yourpageurlhere.php"> www.pctalknet.com
  4. Dhagaxtuur

    Auto Refresh

    Why don't you use javascript to refresh the page. Code <html> <head> <title>mypage</title> <script language=" JavaScript" ><!-- function ReloadPage() { window.location.reload(); } //--></script> </head> <Body onLoad=" ReloadPage()" > </html> You can also use html meta tag to refresh...
  5. Dhagaxtuur

    What tools do I need for ASP?

    Another good Editor is texpad, good alternative of notepad. You may want download free from textpad.com. Access database is not powerfull enough to handle more than 5 users at same time. If you expecting traffic volume, you may want another database. For beginning ASP tutorial to start; try...
  6. Dhagaxtuur

    php &amp; html error

    I thank you execute the php code on submit. Your if statement should be: if (isset($_POST['add'])) { INSERTION CODE HERE } See this tutorial for futher php/mysql record insertion. http://pctalknet.com/php/AddDataForm.php
  7. Dhagaxtuur

    email form - strange problem

    Besides email validation sugested by jpadie, I would also sugest that you do referer validation to make sure fields are posted from your domain name or contact page. If that does not work. You might do image validation.
  8. Dhagaxtuur

    Easy Javascript number check

    Check this tutorial: http://pctalknet.com/javascript/forms.php and this is complete form validation code: http://pctalknet.com/scripts/
  9. Dhagaxtuur

    Restricting Access to Pages

    You might be right zeland but I try various times to call sessin_start() another line of code and never worked for me.
  10. Dhagaxtuur

    Restricting Access to Pages

    Actaully this tutorial is doing great job of you having problem with in the session part. Check it and test the code on your server. If that does not work, than samething is wrong with your server. http://pctalknet.com/php/session.php Check this tutorial.
  11. Dhagaxtuur

    Restricting Access to Pages

    The first line of your code has to be session_start();
  12. Dhagaxtuur

    Using CTRL+SHIFT+(ANY KEY) to bring focus back

    If you using TMainMenu component. There is a property called ShorCut where you can choose the keys to do the action.
  13. Dhagaxtuur

    Deploy Database and connection with the application

    I am using borland C++ Builder 6 Enterprise. It has an ADO component and database quiries. 2) When your app fires up do a quick check to see if the database exists where you expect it to, if it doesn't then open a dialog box asking the user to locate it. This sounds good to me but how I check...
  14. Dhagaxtuur

    Deploy Database and connection with the application

    I have program that uses access database. I am using ADO connection to access the database. The problem is, when I want deploy the application to another computer with different setting (for example if my database rooted to C:/programs files and client computer runs from D: and my program is...
  15. Dhagaxtuur

    TEdit entry validation

    Thank you very much Totte. That was the solution. Great
  16. Dhagaxtuur

    TEdit entry validation

    I need help validating entry of TEDIT->TEXT. How do I make sure user enters numbers with decimal points. Example: 29.95. If the user enters char, I want display error message or ignore it. Please help. Thanks
  17. Dhagaxtuur

    Distribute Applications

    Here is what you should: 1. Go to Project and click on Options 2. Project window will pop-up. Click on the Linker tab 3. Deselect Create Debug information and Use Dynamic RTL 4. Click on the Compiler tab and under the Debugin section Deselect all the 3 check boxes. Under teh...
  18. Dhagaxtuur

    Can I lounch web site from C++ Builder?

    Thank you very much Onrdbandit That is what I need. If any one could tell me how to execute remote file, that would be nice.
  19. Dhagaxtuur

    Can I lounch web site from C++ Builder?

    Right now, I need answer for my current problem. Could you help me with that?
  20. Dhagaxtuur

    Can I lounch web site from C++ Builder?

    Is there a way I can lounch a web site by clicking a form component. I haven't done this before and wondering if someone could point right direction. I looked at WebSnap, EnternetExpress, and WebServices but don't know how to use any of these components. Any sugestions of resource on the net...

Part and Inventory Search

Back
Top