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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by Lynux

  1. Lynux

    Connect to ODBC data source on Windows Machine from MAC OSX

    anyone? ================================= Imagination is more important than knowledge. (A.E.)
  2. Lynux

    Connect to ODBC data source on Windows Machine from MAC OSX

    Anyone ever have to Connect to ODBC data source on a Windows Machine from MAC OSX using PHP?... if so what process did you follow? Thanks a ton! Rich ================================= Imagination is more important than knowledge. (A.E.)
  3. Lynux

    rounding in php - currency

    Also // round 2 dec. points round($variable,2) ================================= Imagination is more important than knowledge. (A.E.)
  4. Lynux

    Generating MS Word Document (*.doc) using PHP

    <?php //------- Header Information you need------// Header(&quot;Content-type: application/msword&quot;); Header(&quot;Content-Disposition: attachment; filename=na.doc&quot;); //----- Database connection-------// $db = mysql_connect(&quot;localhost&quot;, &quot;login&quot;,&quot;pass&quot;)...
  5. Lynux

    Generating MS Word Document (*.doc) using PHP

    Header('Content-type: application/msword'); Header('Content-Disposition: attachment; filename=NA.doc'); This is what I use.... works great and avoids COM. I spit out regular HTML (MS Word 97 or newer has no problem at all rendering it).. the Header('Content-type: application/msword'); forces...
  6. Lynux

    ____foreach loop an multi-diminisional array?_____

    I am trying to loop through a multi-diminsional array and having a little problems. ==================================================== Example array : $rub[1][1][5] = 50.1 $rub[1][2][6] = 52.5 $rub[1][3][7] = 54.3 =========================================== Example code looping through to get...
  7. Lynux

    I created an html page contains the

    what field type and lengths are you using in your MySQL table? ================================= Imagination is more important than knowledge. (A.E.)
  8. Lynux

    how to collect form variables in a array

    To elaborate on rycamors post: To get text field responses into and array : <INPUT TYPE=text name=&quot;entry[1]&quot; size=4> <INPUT TYPE=text name=&quot;entry[2]&quot; size=4> <INPUT TYPE=text name=&quot;entry[3]&quot; size=4> <INPUT TYPE=text name=&quot;entry[4]&quot; size=4>...
  9. Lynux

    ___ Macro runs query and and creates table .. now needing to do a look

    I execute a query through a macro.. data is returned to one wooksheet.... Now I am needing a specific cells to point to a graph template I have set up. Example... query returns to sheet1: |__Gender__|__Age__|__Score__| |____M_____|___20__|___45____| |____F_____|___19__|___47____|...
  10. Lynux

    ________trim text size or MySQL Query Array______

    Does anyone know right off what function will allow me to trim the number of characters that a query field returns (or any variable/array for that matter)? For example A MySQL query returns a field with 18 characters.. I am wanting to trim and display only the first 10 characters. Thanks in...
  11. Lynux

    ==== Need to extract string from comma delimited cell in EXCEL ====

    I have a range of cells I have combined to make one column of comma seperated value cells. What I now need to do is look through that column for a value and if value is located extract only the last three characters of the comma delimited cell. Example: |__A__| 1,5,330 1,4,450 1,3,560 ((I need...
  12. Lynux

    PHP INLCUDE

    when you use <?php require(&quot;file.php?color=#00FF00&quot;); ?> does it do the same thing? ) ================================= Imagination is more important than knowledge. (A.E.)
  13. Lynux

    Can PHP and MySQL be developed/tested in Windows?

    might try phptriad as well: http://sourceforge.net/projects/phptriad/ sets up Apache, PHP, MySQL all at once on a Window$ machine ================================= Imagination is more important than knowledge. (A.E.)
  14. Lynux

    Zero Sized Reply error massage

    Thanks a ton for the lead... How do access the site note using squid?.. I am not real familier with squid. thanks again! :-) ================================= Imagination is more important than knowledge. (A.E.)
  15. Lynux

    Zero Sized Reply Error when accessing PHP scripts from Apache

    Apache suddely started giving me a strange error message When trying to access my php scripts: -------------------------------------------------- ERROR The requested URL could not be retrieved ---------------------------------------------------- While trying to retrieve the URL: myURL The...

Part and Inventory Search

Back
Top