parse error please respond

Discussion in 'PHP' started by Tedd, Apr 12, 2008.

  1. #1
    i got this parse error

    Parse error: syntax error, unexpected T_LNUMBER, expecting T_VARIABLE or '$' in /sites/achter0900nr.nl/www/toevoegen_bedrijf_achter_0900_nr/sendform.php on line 9

    9 $0900nr = $_POST["0900nr"];
     
    Tedd, Apr 12, 2008 IP
  2. vishnups

    vishnups Banned

    Messages:
    166
    Likes Received:
    5
    Best Answers:
    0
    Trophy Points:
    0
    #2
    Hi,

    Change 9 $0900nr = $_POST["0900nr"];

    to

    9 $0900nr = $_POST['0900nr'];
     
    vishnups, Apr 12, 2008 IP
  3. Tedd

    Tedd Peon

    Messages:
    3
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #3
    parse error solved thanks..

    If I send the form the mail client popped up, but need to send direct to mail adress without a mail client :confused:

    sendform.php

    <FORM ACTION="mailto:info@achter0900nr.nl?subject=vul hier uw onderwerp in" METHOD="POST" ENCTYPE="text/plain">

    <?

    if ($_POST["submit"]) {

    $mail = $_POST["mail"];
    $naambedrijf = $_POST["naambedrijf"];
    $0900nr = $_POST['0900nr'];
    $achter0900nr = $_POST["achter0900nr"];

    if (!$mail) {
    echo "Vult u a.u.b. uw email adres in.<br>";
    $check = "1";
    }

    if (!$naambedrijf) {
    echo "Vult u a.u.b. de naam van het bedrijf in.<br>";
    $check = "1";
    }

    if (!$0900nr) {
    echo "Vult u a.u.b. het 0900 nr in.<br>";
    $check = "1";
    }

    if (!$achter0900nr) {
    echo "Vult u a.u.b. het nr achter het 0900 nr in.<br>";
    $check = "1";
    }

    if ($check != 1) {

    $headers = "From: ".$naambedrijf." <".$mail.">\r\n";
    $headers .= "Return-path: ".$mail."\r\n";

    $mailtje = "naambedrijf: ".$naambedrijf."
    E-mail: ".$email."
    naam bedrijf: ".$naambedrijf."
    0900 nr: ".$0900nr."
    nr achter 0900 nr: ".$achter0900nr."

    mail("info@achter0900nr.nl", $naambedrijf, $mailtje, $headers);
    echo "Verzonden";

    }

    }
    else {

    echo "<p><br>Hey, niet hacken heh....";

    }
    ?>


    </div>
    </FORM>
    Ga <a href="http://www.achter0900nr.nl/toevoegen_bedrijf_achter_0900_nr">terug</a> om alles in te vullen

    form itselff


    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <title>Untitled Document</title>
    <link href="style/style.css" rel="stylesheet" type="text/css" />
    <link href="../style/style.css" rel="stylesheet" type="text/css" />
    </head>
    <body>
    <FORM ACTION="mailto:info@achter0900nr.nl?subject=vul hier uw onderwerp in" METHOD="POST" ENCTYPE="text/plain">
    <table>
    <tr>
    <td>
    e-mail
    </td>
    <td>
    <input type="mail" name="mail">
    </td>
    </tr>
    <td>
    Naam bedrijf achter het 0900 nr
    </td>
    <td>
    <input type="naam bedrijf" name="naam bedrijf">
    </td>
    </tr>
    <tr>
    <td>
    huidige 0900 nr
    </td>
    <td>
    <input type="0900nr" name="0900nr">
    </td>
    </tr>
    <tr>
    <td>
    achter 0900 nr l vaste nr
    </td>
    <td>
    <input type="achter0900nr" name="achter0900nr">
    </td>
    </tr>
    <td>
    <td>

    <div align="center">
    <input name="submit" type="submit" />

    <input name="reset" type="reset" />
    </div></td>
    </tr>
    </table>
    </form>
    </body>
    </html>

    thanks all all thanks
     
    Tedd, Apr 13, 2008 IP