Search:

Type: Posts; User: the182guy

Page 1 of 13 1 2 3 4

Search: Search took 0.19 seconds.

  1. Replies
    4
    Views
    1,778

    Re: sending mail using PHP, URL and $_GET

    Is there any reason you're using $_GET for this? As SambaNeko said, $_POST is the most appropriate data source unless there's a good reason.
  2. Replies
    1
    Views
    830

    Re: Help Creating Master Page

    There are many ways to do what you're asking. Try having a look into MVC (model view controller) frameworks with PHP if you don't want to code your own 'master' type of page.
  3. Replies
    4
    Views
    736

    Re: Download Folder with Images Inside

    Here is an example I found after a quick search for 'php zip folder':



    function Zip($source, $destination)
    {
    if (extension_loaded('zip') === true)
    {
    if (file_exists($source)...
  4. Replies
    2
    Views
    705

    Re: Building a scaleable php application

    One solution for the session problem is to have a central shared database which all servers use. Setup the web application to store sessions in the database rather than the default file system...
  5. Replies
    4
    Views
    736

    Re: Download Folder with Images Inside

    I suggest creating a PHP script that will zip/rar up the folder full of images into a single file, then you can download and extract.
  6. Replies
    4
    Views
    756

    Re: Hidden PHP Files

    What do the URLs that you have gathered look like? The server might be setup to change the look of a URL, usually for SEO purposes.
  7. Replies
    10
    Views
    1,442

    VS 2005 Re: Reading Microsoft Word Documents

    Good point, I have only Office 2007, but I do have MS Office Powerpoint Viewer 2003. Could that be causing the problem?
  8. Replies
    10
    Views
    1,442

    VS 2005 Re: Reading Microsoft Word Documents

    Hi mate, There's no item in the intellisense list called 'Word'. VS underlines Word.Application with the error 'Word.Application is not defined'.
  9. Replies
    10
    Views
    1,442

    VS 2005 Re: Reading Microsoft Word Documents

    I installed this but nothing has changed - even after a reboot. I'm not sure if they installed correctly though because there was no 'finished' or 'success' message, after running the setup the...
  10. Replies
    10
    Views
    1,442

    VS 2005 Re: Reading Microsoft Word Documents

    Hi koolsid, thanks for the quick reply...

    Unfortunately I am still getting the same error (Word.Application is not defined) on the line:



    word_server = New Word.Application()


    I have...
  11. Replies
    10
    Views
    1,442

    VS 2005 Reading Microsoft Word Documents

    Hi all,

    I'm trying to read a word document for the purpose of obtaining a word count, I realise Word has built in functionality for presenting a word count but I want to write a little app that...
  12. VS 2005 Re: Easy - Loop through collection of collections

    Nevemind, solved it by using Hashtables instead of collections
  13. VS 2005 [RESOLVED] Easy - Loop through collection of collections

    I have a Collection, the keys are strings and the values are Collections. In the sub Collections the keys are strings and values are Singles/Floats.

    How would I loop through all of the data? I...
  14. Re: [RESOLVED] SQL - DELETE statement with JOINS in it

    jmcilhinney, this is a MySQL database. You might be thinking of MS SQL Server?
  15. Re: SQL - DELETE statement with JOINS in it

    Thanks jmcilhinney, GaryMazzone and Hack for the assistance. I might look into the IN statement some other time, the joins seem to be working for me.
  16. Re: SQL - DELETE statement with JOINS in it

    Solved it I think, does anyone see any problems with this query? It seems to be working as expected:



    DELETE
    vehicles,
    customer_info,
    addresses,
    quotes
    FROM
  17. [RESOLVED] SQL - DELETE statement with JOINS in it

    Hi all,

    I have these database tables in a MySQL database (version 5.0.67-community):

    quotes (fields: id, customer_info_id, vehicle_id)
    customer_info (fields: id, first_name, last_name,...
  18. Replies
    3
    Views
    612

    Re: Date problem in PHP

    That shouldn't echo '2008'.

    Can you show the rest of your code?
  19. Replies
    23
    Views
    1,406

    Re: Session Problem

    The problem with your code is you have your password textbox called 'password' and in the PHP code you are trying to get the value of a textbox called 'pass'. Change it to 'password' and the code...
  20. Replies
    1
    Views
    643

    Re: pulling information according to id

    Have a look at some PHP+MySQL tutorials (assuming you're using MySQL).

    What is your database structure? Have you got all the user information in one table, or is it normalised into seperate...
  21. Replies
    7
    Views
    756

    Re: Silly email question

    No you don't need to be on a webhost.

    In your php.ini configuration file, there are settings for the outgoing mail server (SMTP). Open up your php.ini and look for these settings:



    [mail...
  22. Replies
    11
    Views
    877

    Re: Upgrading laptop memory

    stanav,

    Thanks for the link, that's a very useful site! I will be using that in future, I've already ordered 2 x kingston 1GB PC2-4200. Nevemind, hopefully the kingston brand will outperform the...
  23. Replies
    4
    Views
    902

    Re: Cron Jobs

    Hi Zach,

    What's your hosting setup? Shared? Dedicated server? Free hosting?

    Unless you have a dedicated server your probably not going to have access to a shell to access the crontab directly....
  24. Replies
    11
    Views
    877

    Re: Upgrading laptop memory

    Thanks for the input all.



    You're right with that. But, the Mrs wanted Vista so she got it lol!



    Yes I think it is, I don't think they make dual core celerons.
  25. Replies
    11
    Views
    877

    Re: Upgrading laptop memory

    Thanks Gary,

    There is only one memory module slot. The spec says it will take up to 2GB, and the machine is about 16 months old.
  26. Replies
    11
    Views
    877

    Re: Upgrading laptop memory

    Yes I know it's not a monster. It's only for uni work, email, msn, browsing etc. MS Office is about the biggest app that needs to run on it.
  27. Replies
    11
    Views
    877

    Upgrading laptop memory

    Hi all,

    My girlfriends laptop is running like a dog with just 512MB memory with Windows Vista. I thought that the cheapest and easiest way to improve performance would be to upgrade the memory to...
  28. Re: Inserting in register information please help

    I think visualAd is trying to get you to learn how to debug your code, so I am not going to spoil that.

    In that code there are 5 problems...

    There is 1 fatal error, 2 errors in the SQL query...
  29. Replies
    5
    Views
    660

    Re: php.

    If you run a public web server on your home computer then that brings some problems:


    Yes there is a possibility of hackers getting in.
    Your computer will need to be on 24/7 if you want the...
  30. Replies
    4
    Views
    715

    Re: Form Validation

    Just added this to the Codebank: Easy form validation - http://www.vbforums.com/showthread.php?p=3380227
  31. Replies
    4
    Views
    19,102

    Re: [Javascript OOP] - Easy Form Validation

    Conclusion
    That's it! Thanks for looking. Comments are welcome, and please rate! You are free to use this in your projects.:wave:
  32. Replies
    4
    Views
    19,102

    Re: [Javascript OOP] - Easy Form Validation

    Even More Advanced Features
    You might be thinking that, what if I have a complicated validation to perform? You can write your own custom validation function and just pass it to the Validator, the...
  33. Replies
    4
    Views
    19,102

    Re: [Javascript OOP] - Easy Form Validation

    More Advanced Features
    In the above section I explained about displaying the errors on the page, which is great but what if you want to customise the way the errors are displayed on the page? You...
  34. Replies
    4
    Views
    19,102

    Re: [Javascript OOP] - Easy Form Validation

    Advanced Usage
    I call this section Advanced Usage, but it is still very easy to use, the functionality that we make use of in this section is just more advanced.

    You can show the error messages...
  35. Replies
    4
    Views
    19,102

    [Javascript OOP] - Easy Form Validation

    Introduction
    This is an Object Oriented Javascript form validation framework. I created this because I have written countless forms which require client side validation, each time I did a form I...
  36. Replies
    13
    Views
    933

    Re: Server status?

    Have you installed PHP on your machine?

    Have you installed the Apache web server?

    Also, are you placing the file in the public html/htdocs?
  37. Replies
    13
    Views
    933

    Re: Server status?

    Where are you saving the php file then?

    On a webhost, or your local machine?
  38. Replies
    13
    Views
    933

    Re: Server status?

    I suspect you are saving the code in a HTML file.

    You're going to need to save it in a .php file to work normally.
  39. Replies
    13
    Views
    933

    Re: Server status?

    <html>
    <head>
    <title> PHP Test Script </title>
    </head>
    <body>

    <?php
    $ip = "(wont show)";
    $port = "(wont show)";
  40. Replies
    4
    Views
    634

    Re: [RESOLVED] Tree Traversal

    No problem chunk, glad you sorted it out:wave:
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width