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 Chriss Miller 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: storm197
  • Content: Threads
  • Order by date
  1. storm197

    Scheduler - Logon - Program - Logoff

    Hi, I have to schedule a program to run every night on a Windows 2003 machine. To work correctly, this program require that the user that is running it must be LOGGUED (I cannot use the RUN AS XXX ACCOUNT function). So what I want to do is to automate everynight the Windows Login with the...
  2. storm197

    Safari Frame size problem

    Hi, I'm developping an application and some of my users are on Safari for MAC. I'm using a page with two horizontal frames. height of the first is 270 Height of the second is 530. On IE it looks fine, but on Safari for MAC, it looks more like a 400 of height for both. Any code I can put to...
  3. storm197

    Counting number of days

    Hello there, I have a question, I work on a system with a MSSQL database for DB server and PHP. The MSSQL server date format is the following : Feb 3 2005 12:00AM I have two date fields and I just want to calculate the number of days between those two dates. I tried with the following code...
  4. storm197

    Transfert an array variable to another page without using a form

    Hi, In a page, i'm using an array variable with multiple values. Is there a way to transfert the entire variable values to another page without using a Form tag? Can I put arrays in a session variable ? Thank you.
  5. storm197

    Win XP, SQL 2000 and PHP5

    Hi, I have an application working fine on a Win2K machine, SQL7 client, and PHP5. I Try (for internal reasons) to switch it to a WinXP, SQL2000, PHP5. After the switch, everything works fine except for one thing. When I make a INSERT or UPDATE query, the query runs, but I always get the OR...
  6. storm197

    Putting a value in an IMAGE field

    Hi, I need to use more that one submit button on a form (with a different value being processed). With the TYPE="SUBMIT", everything works fine with the following code: <form action="test2.php" method="POST" name="test"> <INPUT TYPE="SUBMIT" NAME="SUBMIT1" VALUE="1"> <INPUT TYPE="SUBMIT"...
  7. storm197

    Use of SCOPE_IDENTITY()

    Hi. I'm using MS-SQL in my application and PHP. I've been told to use SCOPE_IDENTITY() to get the the identity ID I just entered in a SQL query Insert. Anyone know how to use this so I can use this identity in my PHP code ? Thank you.
  8. storm197

    MSSQL - real_escape_string - Addslashes

    Hi, I wanted to make a topic with this subject. I'm working with MSSQL and I want to secure the users input in my Queries. Unfortunately, MSSQL function doesn't have a real_escape_string function that allow me to secure the info. I read some topic of people suggesting to use the...
  9. storm197

    Security verification

    Hi, I'm building a restricted access site with a Login/Password authentification. I'm new to PHP and I would like to know if my application is SECURE and Ok to publish to Internet. Can anyone check my code and tell me if they see security LACK in it ? In the system, each page has an...
  10. storm197

    Subtract 30 days to a date

    Hi, I want to do a thing I thought would be simple. I have a date, example : 2004-10-15 11:17:42 I want to subtract 30 days from it (a month) Result I want: 2004-09-15 11:17:42 Can anyone help me? I tried to use the mktime function, but it gives me a result like 1097899200
  11. storm197

    FPDF

    Hi, I'm learning how to use FPDF. There is a function we can use to create the PDF which is: $pdf=new FPDF('P','mm','Letter'); P means Portrait mm is the unit of the size Letter is the paper size. It is written that we can specify a custom size "in the form of a two-element array...
  12. storm197

    Replace a caracter in a query

    Hi, I'm trying to replace all accents (é,è and ê) for a e letter in a field. I know that in SQL, the function REPLACE can be used, but is there any function in access that do it ? If not, anyone have an idea of How I can replace my accents ? Thank you
  13. storm197

    Format function

    Hi, In SQL, is there a Format function that allow me to do what i'm doing in Access with the following line : Format(dbo_GPM_E_ELE.Fiche,"0000000") It gives me 0000034 instead of 34. When I type it, Format is blue as if SQL recognize it. But it tells me that Format is not a valid function.
  14. storm197

    Remove &quot;Accents&quot; in a SQL Query

    Hi, I want to know if there is a function in SQL that enable to remove accent from a field (example, convert é,è ou ê to e) If not, is there a mean to do that ? Thank you
  15. storm197

    Best way to make PDF in PHP

    Hi, What is the best way to build a PDF file in PHP. Is it the PDF functions included in the distribution of PHP or the FPDF (http://www.fpdf.org) library ?
  16. storm197

    The specified CGI application misbehaved

    Don't know if this problem have been solved (the search engine is not working) but when I use the function header() in PHP, i'm getting the error CGI Error The specified CGI application misbehaved by not returning a complete set of HTTP headers. The headers it did return are: "BLANK" I'm...
  17. storm197

    PHP Windows installer Download problem

    Hi, I'm trying to download the Windows Installer for PHP 5.01. Unfortunately, I'm always getting the message : Download not found The file you requested (php-X.X.X-installer.exe) is not found on this server (http://us3.php.net/). If this file is a recent addition to our downloads, then it is...
  18. storm197

    NEWBIE URL Redirection

    Hi, I'm quite newbie at PHP. In a IF statement, I want to open an URL if a condition occur. I read in a book that the three way to open an URL is Header() (which is not good for me now), <A> tags, and Form buttons. If there any function that can automaticly open a page in PHP ?
  19. storm197

    PHP with MS SQL Server

    Hi, I'm starting a new project for a company. They want me to program an application using PHP and MS SQL 7. Is it recommended to use PHP ans MS SQL? Is it worth to spend energy to convince them to install MySQL instead ?Do you have any argument that could help me? Thank you
  20. storm197

    Data extration from NDS

    Hi, I'm just looking for a way to extract data from a NDS tree using MS access. Is there a way to do that? Thank you

Part and Inventory Search

Back
Top