Can any php expert help me for this script?

Discussion in 'PHP' started by hhheng, Jul 10, 2007.

  1. #1
    I tried to develop a tool like this http://www.gtsee.com/freedirectorysubmission.php, which is to embed a directory submission page into this website, but for example, when I put like this <form action="http://directory.gtsee.com/submit.php">, and when test it and click the submit button, it will turn to the page http://directory.gtsee.com, instead of submitting the link into the directory.

    Can any php expert help me for this script? If you want to charge for the script, PM me.
     
    hhheng, Jul 10, 2007 IP
  2. norfstar

    norfstar Peon

    Messages:
    1,154
    Likes Received:
    62
    Best Answers:
    0
    Trophy Points:
    0
    #2
    isn't anywhere in the HTML of the link provided, you have:

    <form name="form1" method="post" action="">
    Code (markup):
    Just changing it to what you said should help resolve the issue.
     
    norfstar, Jul 10, 2007 IP
  3. Im The ONE

    Im The ONE Peon

    Messages:
    800
    Likes Received:
    40
    Best Answers:
    0
    Trophy Points:
    0
    #3
    Im The ONE, Jul 10, 2007 IP
  4. emz

    emz Peon

    Messages:
    364
    Likes Received:
    10
    Best Answers:
    0
    Trophy Points:
    0
    #4
    You need to set the method to POST (<form method="post">) .. or else it will use the default which is GET, which is 99% likely causing the problem you're having
     
    emz, Jul 10, 2007 IP
  5. hhheng

    hhheng Banned

    Messages:
    2,633
    Likes Received:
    37
    Best Answers:
    0
    Trophy Points:
    0
    #5
    hhheng, Jul 11, 2007 IP