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: Lynux
  • Order by date
  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...
  16. Lynux

    Zero Sized Reply error massage

    Apache suddely started giving me a strange error message: -------------------------------------------------- ERROR The requested URL could not be retrieved ---------------------------------------------------- While trying to retrieve the URL: myURL The following error was encountered: Zero...
  17. Lynux

    Page can not be found error (php cache issue?)

    It sounds kind of like an Apache issue, your calling your page via http://www.yoursite.com/yourfile.php or is it an index file you are calling via http://www.yoursite.com/ The only time I can recall getting a &quot;Page can not be found&quot; error was after upgrading Apache. Just a though...
  18. Lynux

    ___Seach for file contents in pdf files inside root directory?_____

    Has anyone ever writen a php application to search multiple pdf files contents and return the link to those files matching the search string? not totally sure this is even possible with php but thought this is the place to see if anyone has tried it. Thanks in advance !! :-)...
  19. Lynux

    Hoe do I Loop through multi-diminsional array??

    I am needing to loop throgh a mulit-dininsional array (example: $norm_table_info[0][1]) Ho wo I loop through both key value pairs? ((example here is what I would typically do for a one diminsional array)) -----------> reset($norm_table_info); while (list($k, $v) = each($norm_table_info)){ echo...
  20. Lynux

    inserting data to database?

    Whould anyone have any idea why this is not inserting anything to my database? I am positive the database connection is correct. here is my code. ========================== <?php $db = mysql_connect(&quot;localhost&quot;, &quot;root&quot;); mysql_select_db(&quot;SLIP&quot;,$db); if (list($key...

Part and Inventory Search

Back
Top