Search results

  1. J

    Which PHP to download?

    Try reading the sections on this page. They explain Windows installations in detail: http://www.php.net/manual/en/install.windows.php How many domain controllers or which server version you use is not an issue. You need to install this on a system running IIS as your company's web server. The...
  2. J

    php service startup date or timestamp?

    No, PHP doesn't have a way of tracking this, unless you write a script to do so. However, Apache logs all activity, including startup and shutdown. You would have to ask the hosting company is there's a way to access this in the logs (if it's not your server). Then, you can write a PHP script to...
  3. J

    How can I set a php variable (continued).....?

    Use the increment operator. $var = 0; $var++; Now, I'm assuming you're using this in some script with a control operation or loop. You also need to figure out a way to save the value if you want to keep it for future use. Once the script ends, the variable goes away.
  4. J

    Where to learn to build a website using HTML?

    There are hundreds of HTML tutorials on the Internet. I strongly urge you to JFGI.
  5. J

    In PHP I want to delete multiple records that have been selected using

    Well, the easiest way would be to use a foreach loop. Let's say you're returning a value for each record to the deletion script. This is a value that you already said is part of each record. (For example, a member number or a part number, something unique). Then use this logic: 1. Connect to...
  6. J

    HTML Where Free online/buy online is the Best to learn HTML?

    There are a ton of free tutorials on line for all kinds of web technologies. Start here: http://www.w3schools.com/default.asp
  7. J

    Do they have a flash drive out that is compatible with windows 7?

    Any flash drive will work. They don't have to be specific to Windows 7.
  8. J

    photography file compressions.. help.?

    There is a ton of information on the internet about file compression. I suggest you start at Wikipedia, since they can offer a variety of other sources. http://en.wikipedia.org/wiki/File_compression Nearly any kind of file can be compressed to some degree. The compression schemes vary as to...
  9. J

    photography file compressions.. help.?

    There is a ton of information on the internet about file compression. I suggest you start at Wikipedia, since they can offer a variety of other sources. http://en.wikipedia.org/wiki/File_compression Nearly any kind of file can be compressed to some degree. The compression schemes vary as to...
  10. J

    create a if statement to know what page you on in php?

    There are a variety of elements in the global $_SERVER array that can provide file names, paths, etc. Also the system constant __FILE__ will provide the full local path and name of the current file. You can use them to build an if statement that tells you precisely which file you're in...
  11. J

    generate report in pdf format using php?

    There are PDF functions in PHP. Try reading the manual: http://www.php.net/manual/en/book.pdf.php
  12. J

    HTML HELP!!! Creating Collumns & Music?

    You have to use DIVs in your page layout to create good columns. There are a ton of pages on the web that explain how to to this, so a Google search would be advisable. You should know how to use cascading style sheets (CSS) for this to be effective. It's a lot easier to do, and you can reuse...
  13. J

    Word-to-HTML question?

    Why don't you make it easy and convert the Word files to PDF, then post those files? There are a bunch of ways to do this, but the best free way I know is to install OpenOffice (free), open the Word file in OO's word processor, and just export it to a PDF. You can save a Word file in...
  14. J

    How do I concatenate variables in a PHP doc?

    I'll assume you mean when the POST form data has arrived at the server after the user has filled in and submitted the form. Let's assume the form input names are "firstname" and "lastname". To cat them together, you just use the dot (.) operator, like this: echo "The user's full name is " ...
  15. J

    Should I really be the one to say 'hi' this time on Facebook chat?

    This is a Relationships question, not a computer question. Just because you're using Facebook, that doesn't mean this is the place to ask for advice to the lovelorn.
  16. J

    PHP Question (sorting multidimensional array)?

    http://www.php.net/manual/en/array.sorting.php
  17. J

    tagged photos on facebook?

    Yes. If the photo is deleted, how can a tag link to something that no longer exists?
  18. J

    Hi everybody .... i want to know what's HTML mean ?

    HyperText Markup Language
  19. J

    Add a php script to html?

    You don't have to link anything to anything. If your server or host has PHP running and available (I assume they do), you use the script by placing in your web directory and pointing to it with a browser. If you want it to be the first file a visitor comes to, place it in the web home directory...
  20. J

    Add a php script to html?

    You don't have to link anything to anything. If your server or host has PHP running and available (I assume they do), you use the script by placing in your web directory and pointing to it with a browser. If you want it to be the first file a visitor comes to, place it in the web home directory...
Back
Top