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: *

  • Users: daca
  • Order by date
  1. daca

    Print pdfs from VB

    I was using ShellExecute and in some machines it works fine but with some net printers sometimes fails... I changed to use PDF Api Add in your project Acrobat.tlb reference then you can use this function you give the full path of the file as parameter. Function PrintPDF(strFileName As String)...
  2. daca

    Validating email and username

    Try something like this... Using sessions is better $dominio = $GLOBALS['dominio']; //Var from the form $password = $GLOBALS['password']; //Var from the form //Hace la sesion si el login y password estan correctos if (isset($dominio)) { $sql = "select * from clientes where...
  3. daca

    parse error, trying to update MySQL table w/ form & PHP

    When do you assign the values of HTML variables to a PHP variables... you must use something like $GLOBALS["var in a form"] to get the value you posted in the form or something like $HTTP_POST_VARS Someone who has never served other is someone that has never lived...
  4. daca

    advanced search

    Pues yo veo algunos errores de variables mal escritas...checa bien tu código o cuál es tu problema??? que es lo que hace mal??? faltan algunos $...y además cuando le indicas que los valores se tomaron de la forma con algo como $HTTP_POST_VARS o $GLOBALS //Variables tomadas de la forma...
  5. daca

    Validating email and username

    What table are you talking about??? ... Do you want to take the values from the form and use it to check in DB table??? If so I can help you...but I need more information Someone who has never served other is someone that has never lived...
  6. daca

    Var. lost from includes only when submitting form

    All your pages has a sesion_start() ??? Someone who has never served other is someone that has never lived...
  7. daca

    advanced search

    Please send your code in order to help you... I don`t know what is your problem... Someone who has never served other is someone that has never lived...
  8. daca

    Password verification

    Did you mean the login and Password for MySQL or login and password for your form??? I can`t understand your question... Someone who has never served other is someone that has never lived...
  9. daca

    How to kill program from TCL script

    I need to make some scripts of bash shell... How can I use exec properly...is ok to do that??? Thanks a lot
  10. daca

    erase the "line break" in a string

    What about trim( ) ??? [peace]

Part and Inventory Search

Back
Top